1let x = 5;
2console.log("hello world " + x + " times");
3console.log(`hello world ${x} times`);
4
1`string text`
2
3`string text line 1
4 string text line 2`
5
6`string text ${expression} string text`
7
8tag `string text ${expression} string text`
9