![Hands-On Full Stack Web Development with Aurelia](https://wfqqreader-1252317822.image.myqcloud.com/cover/785/36699785/b_36699785.jpg)
上QQ阅读APP看书,第一时间看更新
String interpolation
Do you remember those times when you needed to concatenate a string using the + operator? It won’t be necessary anymore. For example, the following code concatenates string1 and string2 using the + operator:
let string1 = "JavaScript";
let string2 = "awesome";
let string3 = string1 + " " + string2
Now, let's look at how interpolation helps us write simpler code:
let string1 = "JavaScript";
let string2 = "awesome";
let string3 = `${string1} ${string2}`