Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created June 30, 2015 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/c90e6cb6301df89acf8e to your computer and use it in GitHub Desktop.
Save chuck0523/c90e6cb6301df89acf8e to your computer and use it in GitHub Desktop.
//Template Strings
//バッククオートで囲む
`simple text` // 'simple text'と同値
//複数行
`multiline
text` // "multiline\ntext"
//変数埋め込み
var count = 1, obj = {foo: 'bar'};
//ES5
'count is ' + count + ', obj.foo is ' + obj.foo;
//ES6
'count is ${count}, obj.foo is ${obj.foo}';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment