JS ~ 배열 ~
배열
index.js<body>
<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
document.write(fruits);
</script>
</body>
상수에 과일을 대입해 갑니다. 이번에는 바나나와 사과와 귤을 늘어놓았습니다.
브라우저에서 보면 다음과 같이 됩니다.
꺼내다
그럼, 이 배열로부터 1개 꺼내 가고 싶습니다.
배열은 왼쪽에서 순서대로 0번째라고 생각합니다.
이번에는 사과를 꺼내고 싶습니다.
index.js<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
document.write(fruits[1]);
</script>
이번 사과는 첫 번째 배열입니다.
추가, 삭제
다음으로, 이 배열에 추가와 삭제를 해 나가고 싶습니다.
index.js<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
// document.write(fruit);
// document.write(fruit[1]);
fruits.pop();
fruits.push("もも");
document.write(fruits);
</script>
팝에서 꼬리 감귤을 제거하고 푸시에서 꼬리에 허벅지를 추가했습니다.
index.jsconst fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー")
document.write(fruits);
문장 바나나를 제거하고 망고를 추가했습니다.
*push와 unshify는 한 번에 여러 요소를 추가할 수 있습니다.
중간에 요소 추가, 삭제
삭제 수보다 많은 수를 추가하는 데 사용됩니다.
index.js<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー");
fruits.splice(1,2,"さくらんぼ","ぶどう");
document.write(fruits);
</script>
다음과 같이 되었습니다! !
Reference
이 문제에 관하여(JS ~ 배열 ~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/akari_0618/items/a832534dd3b2d3b39911
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<body>
<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
document.write(fruits);
</script>
</body>
그럼, 이 배열로부터 1개 꺼내 가고 싶습니다.
배열은 왼쪽에서 순서대로 0번째라고 생각합니다.
이번에는 사과를 꺼내고 싶습니다.
index.js
<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
document.write(fruits[1]);
</script>
이번 사과는 첫 번째 배열입니다.
추가, 삭제
다음으로, 이 배열에 추가와 삭제를 해 나가고 싶습니다.
index.js<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
// document.write(fruit);
// document.write(fruit[1]);
fruits.pop();
fruits.push("もも");
document.write(fruits);
</script>
팝에서 꼬리 감귤을 제거하고 푸시에서 꼬리에 허벅지를 추가했습니다.
index.jsconst fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー")
document.write(fruits);
문장 바나나를 제거하고 망고를 추가했습니다.
*push와 unshify는 한 번에 여러 요소를 추가할 수 있습니다.
중간에 요소 추가, 삭제
삭제 수보다 많은 수를 추가하는 데 사용됩니다.
index.js<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー");
fruits.splice(1,2,"さくらんぼ","ぶどう");
document.write(fruits);
</script>
다음과 같이 되었습니다! !
Reference
이 문제에 관하여(JS ~ 배열 ~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/akari_0618/items/a832534dd3b2d3b39911
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
// document.write(fruit);
// document.write(fruit[1]);
fruits.pop();
fruits.push("もも");
document.write(fruits);
</script>
const fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー")
document.write(fruits);
삭제 수보다 많은 수를 추가하는 데 사용됩니다.
index.js
<script>
'use strict'
const fruits = ["バナナ", "りんご", "みかん"]
fruits.shift();
fruits.unshift("マンゴー");
fruits.splice(1,2,"さくらんぼ","ぶどう");
document.write(fruits);
</script>
다음과 같이 되었습니다! !
Reference
이 문제에 관하여(JS ~ 배열 ~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akari_0618/items/a832534dd3b2d3b39911텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)