JS string formatting with positional placeholders --- use backticks
- string format with positional placeholders ` 와 ` 사이에
${}
를 사용하면 된다.
var st1 = 'name';
var st2 = 'javascript';
var sentence = `My ${st1} is ${st2}`;
console.log(sentence);
${}
를 사용하면 된다.var st1 = 'name';
var st2 = 'javascript';
var sentence = `My ${st1} is ${st2}`;
console.log(sentence);