Online NodeJS Compiler
										
										
var x = 25;
var y = 40;
var z = x + y;

console.log("x + y = " + z);
                                
                                

Output Results

										
x + y = 65