Javascript

배열

아이티프로 2023. 1. 24.
반응형

javaScript 배열은 단일 변수에 여러 값을 저장하는 데 사용된다. 배열은 숫자, 문자열 및 개체와 같은 서로 다른 데이터 유형의 값을 저장할 수 있다.

let numbers = [1, 2, 3, 4, 5];

 

배열 생성자를 사용하여 배열을 생성할 수도 있다. 그러나 new Array()보다 [] 방식을 권장한다.

let numbers = new Array(1, 2, 3, 4, 5);

 

배열은 인덱스를 사용하여 배열 요소에 액세스할 수 있다.

console.log(numbers.length); // Output: 5

console.log(numbers[0]); // Output: 1
console.log(numbers[2]); // Output: 3

 

배열에서 사용되는 내장 메서드

  • push(element): adds an element to the end of the array
numbers.push(6); 
console.log(numbers); // Output: [1, 2, 3, 4, 5, 6]
 
  • pop(): removes the last element of the array and returns it
let last = numbers.pop(); 
console.log(last); // Output: 6 
console.log(numbers); // Output: [1, 2, 3, 4, 5]​
 
  • shift(): removes the first element of the array and returns it
let first = numbers.shift(); c
onsole.log(first); // Output: 1 
console.log(numbers);

  

배열에서 값 이터레이트

let numbers = [1, 2, 3, 4, 5];
for (let i = 0; i < numbers.length; i++) {
  console.log(numbers[i]);
}
let numbers = [1, 2, 3, 4, 5];
for (let number of numbers) {
  console.log(number);
}
let numbers = [1, 2, 3, 4, 5];
numbers.forEach(function(number) {
  console.log(number);
});

반응형

'Javascript' 카테고리의 다른 글

백틱(`)과 템플릿 리터럴  (0) 2023.01.24
Number Methods  (0) 2023.01.24
Math , 난수  (0) 2023.01.24
if else 조건문  (0) 2023.01.24
switch 조건문  (0) 2023.01.24

댓글