「Google Apps Script」テンプレートリテラルで変数を使用する

2022年6月24日

構文
`文字列${変数}文字列`
文字列をバックコーテーション(`)で括り、その中で${変数}と書くと変数を使用します。
使用例

function myFunction() {
 
 const strA = "東京";
 console.log(`都市は${strA}です。`); 

  const intB = 22;
  const intC = 33;
  console.log(`合計は ${intB + intC}です。`); 
}

実行結果
都市は東京です。
合計は 55です。

Google Apps Script

Posted by arkgame