object2 [JavaScript] 편리한 Object의 세계! (With. Ellie) 1. Objects one of the JavaScript's data types. a collection of related data and/or functionality. Nearly all objects in JavaScript are instances of Object object = { key : value }; 변수안에 인자를 지정함으로써 좀 더 관리, 활용하기 편리하게 도와준다. const obj1 = {}; // 'object literal' syntax const obj2 = new Object(); // 'object constructor' syntax function print(person) { console.log(person.name); // 인자에 접근시 점(.) 사용! cons.. 2021. 7. 27. [JavaScript] Class vs Object, 객체지향 언어 클래스 정리 (With. Ellie) class : template ,틀 object : instance of a class JavaScript classes - introduced in ES6 - syntactical sugar over prototype-based inheritance //편리하다 1. Class declarations class Person { // constructor constructor(name, age) { // fields this.name = name; this.age = age; } // methods speak() { console.log(`${this.name}: hello!`); } } const rotoma = new Person('rotoma', 20); console.log(rotoma.name).. 2021. 7. 27. 이전 1 다음