Object (오브젝트) - One of the JavaScript's data types. - A collection of related data and/or functionality - Nearly all objects in JS are instances of Object - Object = { key : value } : 오브젝트는 우리가 접근할 수 있는 변수/속성과 그 속성이 가지고 있는 값 두 가지로 나눠지는데, { key : value } 의 형태이다. ex) { name : ‘Diana’ } const name = 'Diana'; const age = 4; print(name, age); function print(name, age) { console.log(name); console.log..