자바스크립트 배열의 값 순서 바꾸기 1. splice 메소드 설명 자바스크립트의 배열의 값을 변경할 때는 Array.prototype.splice() 를 사용하면 됩니다. Array.prototype.splice() 설명 링크 : Array.prototype.splice() 위 링크 접속으로 자세한 메소드 정보를 확인 가능합니다. 하단의 간단한 메소드 사용법입니다. const months = ['Jan', 'March', 'April', 'June']; months.splice(1, 0, 'Feb'); // inserts at index 1 console.log(months); // expected output: Array ["Jan..