바르고 뜨겁게
Vanilla JS - 변수에 넣을 수 있는 데이터 본문
string, number, float, Array, Object
Object : const info = { name:"jh",
age:30,
gender:true,
favMovies: ["아이언맨", "신동사"]};
info.name
info.name = "hy"
처럼 재할당가능const 로 선언됬지만 Object 안에 값들은 변경 가능하다.
'자바스크립트 > Vanilla Js' 카테고리의 다른 글
Vanilla JS - DOM(Document Object Module) Functions (0) | 2018.11.25 |
---|---|
Vanilla JS - 함수(Function) Object (0) | 2018.11.25 |
Vanilla JS - 템플릿 문자열(template string) (0) | 2018.11.25 |
Vanilla JS - 변수(Variable) (0) | 2018.11.24 |
Vanilla JS 란? (0) | 2018.11.24 |
Comments