JavaScript(정렬)
9137 단어 JavaScript
이른바 배열
여러 값을 요약하여 관리하는 데 사용됩니다.[値1,値2,値3]
와 같이 사용합니다.
배열 중의 각 값을 요소라고 부른다.//文字列をまとめた配列
["apple","banana","orange"]
//数値をまとめた配列
[21,52,14]
수조를 상수에 대입하다
수조를 대입하는 상수 명칭은 여러 형식이다.//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits);
//コンソール
["apple","banana","orange"]
배열 요소 가져오기
색인 번호
요소 번호.
0부터 시작합니다.配列 [インデックス番号]
에서 이 번호를 얻을 수 있는 요소.//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
console.log(fruits[2]);
//コンソール
apple
orange
배열 요소 업데이트
요소를 덮어쓸 수 있습니다.//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
fruits[0]="grape";
console.log(fruits[0]);
//コンソール
apple
grape
배열과 for문
보통, 모든 요소를 출력할 때 ↓const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
console.log(fruits[1]);
console.log(fruits[2]);
요소수가 증가하면 모두 쓰기가 번거롭다
for문↓ 사용//・**変数 i**を用いる。
//・iが0~2(インデックス番号)の間ループする。
const fruits = ["apple","banana","orange"];
for(let i = 0;i < 3;i++){
console.log(fruits[i]);
}
따라서 변수가 100에 이르더라도 간단하게 쓸 수 있다.
length
그룹의 원소 수를 얻을 수 있습니다.
(요소의 수를 알고 있다.)//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits.length);
//コンソール
3
항상 정렬 중 ↓ 사용const fruits = ["apple","banana","orange"];
console.log(fruits.length);
for(let i = 0;i < fruits.length;i++){
console.log(fruits[i]);
}
//コンソール
3
apple
banana
orange
Reference
이 문제에 관하여(JavaScript(정렬)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ayano_yoshida/items/51f3e37b0df2c2f7deef
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
//文字列をまとめた配列
["apple","banana","orange"]
//数値をまとめた配列
[21,52,14]
//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits);
//コンソール
["apple","banana","orange"]
//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
console.log(fruits[2]);
//コンソール
apple
orange
//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
fruits[0]="grape";
console.log(fruits[0]);
//コンソール
apple
grape
const fruits = ["apple","banana","orange"];
console.log(fruits[0]);
console.log(fruits[1]);
console.log(fruits[2]);
//・**変数 i**を用いる。
//・iが0~2(インデックス番号)の間ループする。
const fruits = ["apple","banana","orange"];
for(let i = 0;i < 3;i++){
console.log(fruits[i]);
}
//書き方
const fruits = ["apple","banana","orange"];
console.log(fruits.length);
//コンソール
3
const fruits = ["apple","banana","orange"];
console.log(fruits.length);
for(let i = 0;i < fruits.length;i++){
console.log(fruits[i]);
}
//コンソール
3
apple
banana
orange
Reference
이 문제에 관하여(JavaScript(정렬)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ayano_yoshida/items/51f3e37b0df2c2f7deef텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)