Note: that's better to use string formatting instead of string interpolation
format(template, arg0, arg1, ...)
Example:
format('This is my {} project. project name is {}.', 'first', 'Example-project')
Result:
This is my first project. project name is Example-project.
- Javascript
$ npm install string-format