showing results for - "nodejs format text"
Méline
06 Mar 2017
1var my_name = 'John';
2var s = `hello ${my_name}, how are you doing`;
3console.log(s); // prints hello John, how are you doing
4