Forwarded from coding with ☕️
let message;
message = 'Hello!';
alert(message);
Forwarded from coding with ☕️
let name = "John";
// embed a variable
alert( `Hello, ${name}!` ); // Hello, John!
// embed an expression
alert( `the result is ${1 + 2}` ); // the result is 3
Forwarded from coding with ☕️
let name = "Ilya";
alert( `hello ${1}` ); // ?
alert( `hello ${"name"}` ); // ?
alert( `hello ${name}` ); // ?