1
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 1 year has passed since last update.

Javascriptのオブジェクト型、プリミティブ型について

Last updated at Posted at 2021-11-17

#JSのデータ型
JavascriptをJSと略して使います。
JSは主にオブジェクト型プリミティブ型に分けられます。

#プリミティブ型
JSのプリミティブ型は下の7つです。

1 数値型(Number)
正数、負の数、少数などの数値です。

2 文字列型(String)
文字列のことでダブルクオテーションがシングルクオテーションで表せます。

3論理型(Boolean型)
trueかfalseで表します。

4 Null型
中身が空で何もない状態です。

5 Undefined型
未定義で何を表ているのかがわからない時です。

6 Symbol型
symbolの値を

7 BigInt型
巨大な整数のデータ

#オブジェクト型
プリミティブ型以外はオブジェクト型です。
なのでプリミティブ型を抑えておけばオブジェクトはすぐ理解できます。

#最後に
Rubyは全部オブジェクトでできていますがJSは違います。
1つ言語になれたら他の言語にも応用ができて
学習した言語と比較しながら学習するといいと思います。

⚫︎参考資料
https://qiita.com/makotoo2/items/9566cebf205ef8b42505
https://itsakura.com/javascript-data-type

1
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
1
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?