1var animal = "cow";
2var str=`The ${animal} jumped over the moon`; // string interpolation
1let x = 5;
2console.log("hello world " + x + " times");
3console.log(`hello world ${x} times`);
4
1let value = dummy`Ik ben ${name} en ik ben ${age} jaar`;
2
3function dummy() {
4 let str = "";
5 strings.forEach((string, i) => {
6 str += string + values[i];
7 });
8 return str;
9}
10