자바스크립트

js 객체

KairoYang 2020. 5. 26. 19:44

객체

객체는 js의 데이터 타입중 하나이다

a collection of related data and/or functionality.

nearly all objects in js are instances of object

object = {key: value}

동적으로 타입이 런타임때 결정 (프로그램 동작하고 있을때)

 

객체 선언하는 법

const obj1 = {}; //object literal

const obj2 = new Object() //object constructor