[JavaScript] 5. Object
Literals and properties object는 key와 value의 집합체이다. object = {key : value}; ```js // object 생성 const obj1 = {}; // ‘object literal’ syntax const obj2 = new Ob...
Literals and properties object는 key와 value의 집합체이다. object = {key : value}; ```js // object 생성 const obj1 = {}; // ‘object literal’ syntax const obj2 = new Ob...
Object와 자료구조의 차이점? 토끼와 당근이 있을 때 토끼와 당근 각각은 Object이다. 토끼: 눈, 코, 입, 뛴다, 먹는다 당근: 주황색, 비타민C 이렇듯 Object는 서로 연관된 특징과 행동을 묶어둔 것을 말함 토끼 여러마리 혹은 당근 여러개와 같이 비슷한 타입의 Ob...
🙂 배열 (Array) 1. 배열을 문자열로 변환 (join) 내 답 const fruits = ['apple', 'banana', 'orange']; let str = ''; for(let i=0; i<fruits.length; i++){ str += fruits[i...
💎 Function 💡 Parameters
Class와 Object 개념 정리 Class: template template: 해당 클래스에는 어떠한 데이터가 들어갈 수 있는지 템플릿만 정의해놓음 declare once: 한번만 선언 no data in: 정의만 한 것으로 실제 메모리에 올라가지 않음