“Interpolacja łańcucha TypeScript” Kod odpowiedzi

Interpolacja łańcucha TypeScript

//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

Interpolacja łańcucha TypeScript

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

Odpowiedzi podobne do “Interpolacja łańcucha TypeScript”

Pytania podobne do “Interpolacja łańcucha TypeScript”

Więcej pokrewnych odpowiedzi na “Interpolacja łańcucha TypeScript” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu