“Typscript String Interpolation” Code-Antworten

Typscript 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

Typscript String Interpolation

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

Ähnliche Antworten wie “Typscript String Interpolation”

Fragen ähnlich wie “Typscript String Interpolation”

Weitere verwandte Antworten zu “Typscript String Interpolation” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen