Write program to display the sum of 10 + 5, using two variables x and y.
You can define the two variables as
var x; var y;
Use the addition operator (+).
var x = 10; var y = 5; console.log( x + y );