Input
Output
// Simple JavaScript Program // Print a message console.log("Welcome to OnlineTpoint.com. Online Javascript Compiler!"); // Declare two numbers let a = 10; let b = 5; // Perform addition let sum = a + b; // Display the result console.log("The sum of " + a + " and " + b + " is " + sum);