[splice]
splice(index, how many, exchange) splice(1 ) index 뒤로 다 지워 splice(1, 0, "ee", "ff"); 중간에 요소 추가 splice(1, 1, "ee") 중간 요소 수정 splice(1, 2, "ee", "ff") 중간 요소 여러개 수정
객체
객체 1. 여러 개의 값을 가지는 자료구조 2. 값은 이름 : 값 쌍으로 기록 => {key, property, name etc : value} 3. 일반적으로 const로 선언 정의 1. 객체 리터럴을 사용하여 정의 - const person = {firstName : "John", lastName : "Doe", age : 50, eyeColor : "blue"}; 2. 공백, 줄바꿈 무관 3. 여러 줄에 걸쳐 객체 정의 가능 - const person = { firstName : "John", lastName : "Doe", age : 50, eyeColor : "blue", }; 객체 생성자 1. 생성자 함수의 이름 첫 글자는 가급적 대문자 지정 (below the 'this' is to Pers..