Showing posts with label Template. Show all posts
Showing posts with label Template. Show all posts

22 July 2021

Template string in javascript

const name = "world";
const message = `Hello ${name}`;
console.log(message);

Output:

Hello world           

Github link : https://github.com/adi501/JavaScriptExamples.git