Javascript #1

John Jun·2023년 2월 14일
0

JavaScript

목록 보기
2/5
post-custom-banner

Data type 데이터 종류

  1. string

  2. number

  3. boolen

  4. undefined

  5. null

  6. object

  7. array

  8. String

  • "", ``, 혹은 ''를 사용해서 표현.
  1. Number
    정수 및 부동소수점 숫자를 나타냄

  2. Boolen
    True, False 두 가지 값만 존재하는 논리 데이터

  3. Undefined
    값이 할당되지 않은 상태를 나타냄

ex)

let undef;
let obj = { abd:123 };

console.log(undef): // undefined
console.log(obj.abc); // 123
console.log(obj.xyz); // undefined
  1. Null
    어떤 값이 의도적으로 비어있음을 의미한다.

ex)

let empty = null;

console.log(empty): // null
  1. Object(객체 데이터)

여러 데이터를 Key:Value 형태로 저장합니다. {}

ex)

let user ={
name: 'John",
age: 100,
isValid: true
};

console.log(user.name); // John
console.log(user.age); // 100
console.log(user.isValid); // true
  1. Array(베열 데이터)

여러 데이터를 순차적으로 저장합니다. []

ex)

let fruits = ['Apple','Bannana', 'Cherry'];

console.log(fruits[0]); // Apple
console.log(fruits[1]); // Bannana
console.log(fruits[2]); // Cherry
profile
I'm a musician who wants to be a developer.
post-custom-banner

0개의 댓글