0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptの主要な組み込みオブジェクトまとめ

Last updated at Posted at 2020-03-28

#組み込みオブジェクトとは
Javascriptに標準で組み込まれているクラスを、組み込みオブジェクトと言います。

#オブジェクトの種類
###Number
数値を扱うラッパーオブジェクト

###String
文字列を扱うラッパーオブジェクト

###Boolean
審議値を扱うラッパーオブジェクト

###Array
配列を扱うオブジェクト

###Function
関数を扱うオブジェクト

###Object
全てのオブジェクトのベースとなるオブジェクト

###Date
日付や時刻を扱うオブジェクト

###RegExp
正規表現を扱うオブジェクト

###Error
例外情報を扱うオブジェクト

###Math
数学的な定数と関数を提供するオブジェクト

###JSON
JSON形式のデータを操作する機能を提供するオブジェクト

#チュートリアル
https://developer.mozilla.org/ja/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?