나머지 연산자(…)를 사용하면 임의의 수의 인수로 함수를 호출한 다음 초과 인수를 배열로 액세스할 수 있습니다. 나머지 연산자를 사용하면 배열이나 개체를 구조화할 수도 있습니다.
스프레드 연산자(…)를 사용하면 배열과 같은 반복 가능한 항목을 개별 요소로 확장할 수 있습니다.
예시
다음은 JavaScript의 나머지 및 스프레드 연산자를 보여주는 코드입니다 -
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample, .result { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>JavaScript Rest and spread operator</h1> <div class="sample"></div> <div style="color: green;" class="result"></div&g; <button class="btn">Spread Operator</button> <h3> Click on the above button to concatenate array using spread operator </h3> <button class="btn">Rest Operator</button> <div style="color: green;" class="result"></div> <h3> Click on the above button to add some numbers using rest operator </h3> <script> let sampleEle = document.querySelector(".sample"); let btnEle = document.querySelectorAll(".btn"); let resEle = document.querySelectorAll(".result"); let arr = [2, 3, 4, 5]; let arr1 = ["a", "b", "c", "d"]; sampleEle.innerHTML = "arr = " + arr + "<br> arr1 = " + arr1; function addArr(num, ...ar) { let sum = num; ar.forEach((item) => { sum += item; }); resEle[1].innerHTML = "Sum of the elements = " + sum; } btnEle[0].addEventListener("click", () => { resEle[0].innerHTML = "Concatenated array = " + [...arr, ...arr1]; }); btnEle[1].addEventListener("click", () => { addArr(44, 11, 35, 44, 22, 99); }); </script> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
"확산 연산자" 버튼을 클릭하면 -
"Rest Operator" 버튼을 클릭하면 -