드림 코딩 엘리1 7.오브젝트 넌 뭐니?? /** * Objects * one of the JavaScript's data types. * a collection of related data and/or functionality. * Nearly all objects in JavaScript are instance of Object * Object = {key : value}; */ // 1. Literal and properties const name = 'ellie'; const age = 4; print(name,age); function print(name, age){ console.log(name); console.log(age); } //고루고루 하기 어려워 진다!! function prints(person){ console.log(p.. 2021. 2. 14. 이전 1 다음 반응형