JS의 배열 메서드 - 푸시 및 팝
시작하자...
푸시 - 배열 끝에 요소를 삽입하는 데 사용됩니다.
팝 - 배열에서 요소를 제거하는 데 사용됩니다.
코드 예 -
const array = [1,2,3,4,5];
const array2 = ["This","is","array2"]
array.push(6) //single element insertion
array.push(7,8,9) // multiple element insertion
array.push("BOOTSTRAP5") // string element insertion
array.push("TAILWINDCSS","REACT JS") //multiple string element insertion
array.push([10,11]) // number array insertion
array.push(["NODE JS","MONGO DB"]) // string array insertion
array.push([[12,13],[14,15]]) // 2-d array insertion
array.push({name:"shubham",age:21}) // Object insertion
array.push(array2) // array stored in a variable then inserted
array.push(undefined,null) // undefined and null insertion
array.push(true,false) // Boolean insertion
array.push(array) // [Circular *1]
console.log(array)
array.pop() // pop out the last element
array.pop() // pop out the last element
출력 -
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
'BOOTSTRAP5',
'TAILWINDCSS',
'REACT JS',
[ 10, 11 ],
[ 'NODE JS', 'MONGO DB' ],
[ [ 12, 13 ], [ 14, 15 ] ],
{ name: 'shubham', age: 21 },
[ 'This', 'is', 'array2' ],
undefined,
null,
true,
false,
[Circular *1]
]
After popping 2 times
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
'BOOTSTRAP5',
'TAILWINDCSS',
'REACT JS',
[ 10, 11 ],
[ 'NODE JS', 'MONGO DB' ],
[ [ 12, 13 ], [ 14, 15 ] ],
{ name: 'shubham', age: 21 },
[ 'This', 'is', 'array2' ],
undefined,
null,
true
]
이 게시물을 확인해 주셔서 감사합니다.
^^ 아래 링크에서 기부로 저를 도울 수 있습니다 감사합니다👇👇 ^^
☕ --> https://www.buymeacoffee.com/waaduheck <--
이 게시물도 확인하십시오.
Reference
이 문제에 관하여(JS의 배열 메서드 - 푸시 및 팝), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shubhamtiwari909/js-push-and-pop-with-arrays-33a2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)