String quotes
الأهمية: 5
ما ناتج هذا الكود ؟
let name = "Ilya";
alert( `hello ${1}` ); // ?
alert( `hello ${"name"}` ); // ?
alert( `hello ${name}` ); // ?
Backticks تضمن التعبير داخل ${...}
في داخل النص.
let name = "Ilya";
// التعبير هو رقم 1
alert( `hello ${1}` ); // hello 1
// التعبير هو نص "name"
alert( `hello ${"name"}` ); // hello name
// التعبير هو متغير ، يتضمنه
alert( `hello ${name}` ); // hello Ilya