Answers for "string interpoltion ts"

4

typescript string interpolation

//Works only with ES6/ES2015 and above
let playerName:string = "Sachin Tendulkar";    
console.log(`${playerName} is the greatest cricketer of all time`)
 
//**** Output ****
//Sachin Tendulkar is the greates cricker of all time
 
Posted by: Guest on May-20-2020
0

typescript string interpolation

var apples: number = 4;
console.log(`I have ${apples} apples`);
Posted by: Guest on March-07-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language