Quick actions

cmd+k|ctrl+k

Navigation

Languages

Template literals

Snippet info

Language

JavaScript

Visibility

public

Author

sanjivrai543

Created

2020-10-26T22:24:29Z

Updated

2020-10-26T22:24:29Z

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}.`);
INFO