이 기사의 예에서는 JavaScript가 슬라이스 함수를 사용하여 배열의 일부 요소를 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JS 배열에는 배열의 지정된 부분을 가져올 수 있는 슬라이스 메서드가 있습니다. 다음 코드는 배열의 두 번째 및 세 번째 요소를 가져옵니다.
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to extract the second and the third elements from the array.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var fruits = ["Banana","Orange","Lemon","Apple","Mango"]; var citrus = fruits.slice(1,3); var x=document.getElementById("demo"); x.innerHTML=citrus; } </script> </body> </html>
위 코드 출력
오렌지,레몬
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.