JavaScript

new


myDate = new Date();
// 新規日付オブジェクト myDate を生成。

myBool = new Boolean(false);
// 新規ブーリアンオブジェクト myBool を生成し、値を false に設定。