æååã®å¼ç¨ç¬¦
éè¦æ§: 5
ãã®ã¹ã¯ãªããã®åºåã¯ã©ããªãã§ãããï¼
let name = "Ilya";
alert( `hello ${1}` ); // ?
alert( `hello ${"name"}` ); // ?
alert( `hello ${name}` ); // ?
ããã¯ã¯ã©ã¼ã㯠${...} ã®ä¸ã®å¼ãæååã«åãè¾¼ã¿ã¾ãã
let name = "Ilya";
// å¼ã¯æ°åã®1ã§ã
alert( `hello ${1}` ); // hello 1
// å¼ã¯æååã® "name" ã§ã
alert( `hello ${"name"}` ); // hello name
// å¼ã¯å¤æ°ã§ãããã«åãè¾¼ã¾ãã¾ã
alert( `hello ${name}` ); // hello Ilya