toString() メソッドは、指定した Date オブジェクトをローカルタイムゾーンで解釈したものを表す文字列を返します。
const event = new Date('August 19, 1975 23:15:30');
console.log(event.toString());
// Expected output: "Tue Aug 19 1975 23:15:30 GMT+0200 (CEST)"
// Note: your timezone may vary
Go to list of users who liked
More than 1 year has passed since last update.
toString() メソッドは、指定した Date オブジェクトをローカルタイムゾーンで解釈したものを表す文字列を返します。
const event = new Date('August 19, 1975 23:15:30');
console.log(event.toString());
// Expected output: "Tue Aug 19 1975 23:15:30 GMT+0200 (CEST)"
// Note: your timezone may vary
Register as a new user and use Qiita more conveniently
Go to list of users who liked