# 組み込みオブジェクトしたい ```js const string = "String"; const number = 123; const array = new Array(); const mapO = new Map(); const set = new Set(); const date = new Date(); ``` ```{toctree} js-array js-object js-map js-set ``` ## 日付したい(`Date`) ```js const now = new Date(); ``` ## リファレンス - [標準組み込みオブジェクト - JavaScript | MDN](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects)