Google Apps Script typeof演算子でデータ方を調べるサンプル

構文
typeof データの値
typeof演算子は、データ型を調べることができます。
戻り値は、データ型を示す文字列を返します。

使用例

function myFunction() {
    console.log(typeof 123); 

    console.log(typeof "456"); 

    console.log(typeof true); 
}

実行結果
number
string
boolean

Google Apps Script

Posted by arkgame