배열 Array: 아이템 추가 및 삭제, flat( )
아이템 넣고 빼기 - includes( string ) : 포함했는지 확인 - shift, unshift, pop, push : 앞+, 앞-, 뒤-, 뒤+ flat an arrray Array.prototype.flat() Array.prototype.concat() + spread operator (…) Array.prototype.concat () + Function.prototype.apply() [ ].concat.apply([], [1, [2], [3, [[[4]]]]])) = [].concat(1, [2], [3, [[[4]]]]) func.apply(thisVal, argsArray) 은 thisVal에 설정된 this로 + argsArray 배열의 매개변수로 func( )를 호출 새로운 배..
2021. 3. 3.