“interpolasi string JS” Kode Jawaban

JavaScript interpolasi string

const age = 3
console.log(`I'm ${age} years old!`)
Drab Dogfish

String literal javascript

`string text`

`string text line 1
 string text line 2`

`string text ${expression} string text`

tag`string text ${expression} string text`
Happy Heron

interpolasi string JS

const apples = 4;
const bananas = 3;
console.log(`I have ${apples} apples`);
console.log(`I have ${apples + bananas} fruit`);
Puzzled Puffin

interpolasi string JS

var name = "Taimoor";
var country = "Pakistan";

// string interpolation
console.log(`I am ${name} and I am from ${country}`);
Distinct Dolphin

Interpolasi di JS

const name = "John";

console.log(`Welcome ${name}.
You have ${2 * 5} new notifications!`);
Toutou Toutou

Interpolasi ekspresi JavaScript

const name = 'Jack';
console.log('Hello ' + name); // Hello Jack
SAMER SAEID

Jawaban yang mirip dengan “interpolasi string JS”

Pertanyaan yang mirip dengan “interpolasi string JS”

Lebih banyak jawaban terkait untuk “interpolasi string JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya