Google Apps Script String関数で数値を文字列に変換するサンプル

構文
const 数値の変数名 =値;
String(数値の変数名)
String関数を利用して数値を文字列に変換します。

使用例

function myFunction() {
 const tt = 123;
    console.log(String(tt)); 
    console.log(typeof(String(tt)));
}

実行結果
123
string

Google Apps Script

Posted by arkgame