Template Literals/ Rest Parameter & Spread Operator in ES6
Template Literals in ES6
The template literal has made it easier to include variables inside a string.
const first_name = "shairy";
const last_name = "kalra";
Before ES6
console.log('Hello ' + first_name + ' ' +... READ MORE >>
Recent Comments