[JavaScript] 배열 합치는 방법과 속도 비교
[JavaScript] how to combine array and what is the fastest method 우선 두 배열을 합치는 방법에 대해서 알아보자. 방법은 아래와 같이 3가지 방법이 있다. 1. concat() var existed = [ 1, 2, 3 ]; var params = [ "hello", true, 7 ]; var other = existed.concat(params); 2. spread operator (...) var existed = [ 1, 2, 3 ]; var params = [ "hello", true, 7 ]; var other = [ ...existed, ...params ]; 3. spread operator and push (얘가 젤 빠름, 테스트는 아래 링..