「JavaScript」toLocaleString()のサンプル
書式
toLocaleString() メソッドは、配列の要素を表す文字列を返します。
使用例
const cft = [1, 'testMsg’, new Date(’21 Dec 2020 11:21:10 UTC’)];
const localeString = cft.toLocaleString(“ja-JP", { timeZone: “Asia/Tokyo" });
console.log(localeString);
実行結果
> “1,testMsg,2020/12/21 20:21:10"