오브젝트 개념정리Object (JavaScript ES6)
카테고리 없음 2020. 9. 22. 21:58

Objects의 정의 one of the JS's data types. a collection of related data and/or functionality. Nearly all objects in JS are instances of Object. object = { key : value }; ✅Literals and properties ◾Object의 필요성 Object 미적용 시 문제점 : 변수 하나 당 값을 하나만 부여할 수 있다. 함수에 변수 개수만큼의 파라미터로 전달해야 하므로 인자가 많아지면 관리가 힘들다. ◾Object를 생성하는 방법 object literal syntax : curly brackets 사용 const obj1 = {}; object constructor syntax :..