console.log("Hello World!");
let name='sanjiv';
let country='India';
let age='24';
console.log("Name: "+name+" Country: "+country+" age: "+age);
//template literals
console.log(`Name ${name} length of the name ${name.length} Country ${country} age ${age}`);
let a = 5;
let b = 10;
console.log(`Fifteen is ${a + b} and
not ${2 * a + b}.`);