“TypeScript String Interpolation” Ответ

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
 
Coder Cuttlefish

TypeScript String Interpolation

var apples: number = 4;
console.log(`I have ${apples} apples`);
Puzzled Puffin

Ответы похожие на “TypeScript String Interpolation”

Вопросы похожие на “TypeScript String Interpolation”

Больше похожих ответов на “TypeScript String Interpolation” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования