Template literals allow for embedded expressions and help to solve the complex concatenation problem.
They are enclosed by a back-tick character (the button just below the escape key on your keyboard) and are represented by a dollar sign ($) and curly braces ( {} ).
The template literals feature is an ES6 addition in Javascript, and they provide an elegant alternative to the traditional concatenations, especially when the values to be paired are complex
Example
let name = 'Lawson Luke';
//with traditional concatenation
console.log('My name is ' +name); //My name is Lawson Luke
//with template literals
console.log(`My name is ${name}`); //My name is Lawson
let name = 'Lawson Luke';
let city = 'Abuja';
let country: 'Nigeria';
//with traditional concatenation
console.log('My name is '+name + ' '+ 'I reside in '+ city + ', ' + country + '. Thank you.');
//with template literals
console.log(`My name is ${name}. I reside in ${country}, ${city}. Thank you.`);
Isomorphic Labs, a drug discovery start-up launched four years ago and owned by Google’s parent…
Regardless of whether TikTok faces a U.S. ban, Instagram is wasting no time positioning itself…
Amazon Web Services (AWS) continues to enhance its customer experience by offering more flexible payment…
JavaScript, often hailed as the "language of the web," continues to dominate the programming landscape…
Amazon is accelerating efforts to reinvent Alexa as a generative AI-powered “agent” capable of performing…
SpaceX's satellite-based Starlink, which is currently unlicensed for use in India, is reportedly being utilized…