javascript

Template Literals

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

Now let’s make things a little complex, shall we?

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

Recent Posts

Drones 101: What They Are & How They Work

In recent years, drones have become more than just cool gadgets or tools for tech…

1 day ago

React Native vs. Flutter: Which is Best to Build Mobile Apps in Abuja?

Looking to build mobile apps in Abuja? Choosing the right framework is crucial for performance,…

6 days ago

How to Hire the Best Software Developers for Your Mobile App Development Project in Abuja

Introduction The demand for mobile app development in Abuja is skyrocketing, with businesses, startups, and…

1 week ago

How to Dynamically Create, Update, and Delete HTML Elements

In modern web development, dynamically manipulating HTML elements is essential for creating interactive and responsive…

3 weeks ago

Why parseInt(’09’) Returns 0

If you've ever encountered the puzzling behavior of parseInt('09') returning 0 in JavaScript, you're not…

3 weeks ago

Event Bubbling and Capturing: Why Your Click Listener Fires Twice (And How to Fix It)

If you’ve ever built an interactive web application, you may have encountered a puzzling issue:…

1 month ago