1var animal = "cow";
2var str=`The ${animal} jumped over the moon`; // string interpolation
1//Regular string
2var rgb = "rgb(" + r + "," + g + "," + b + ")";
3//Template literal
4var rgb = `rgb(${r}, ${g}, ${b})`;
1If you are gonna copy and paste answers from MDN... you should AT LEAST
2check the page hedaer to see what topic you are copying. That way you don't
3post a porno graphic where a 3-D graphic belongs.
4
5`string text`
6
7`string text line 1
8 string text line 2`
9
10`string text ${expression} string text`
11
12tag`string text ${expression} string text`
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`
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