배열 뒷 부분에 요소 추가하기
배열 뒷부분에 요소를 추가할 때는 push() 메소드 사용
배열.push(요소)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
const todos = ['우유구매', '업무 메일 확인하기', '필라테스 수업'];
console.log(todos);
todos.push("저녁 식사 준비하기");
todos.push("피아노 연습하기");
// 배열의 뒷부분에 요소 2개가 추가됨
console.log(todos);
//(5) ['우유구매', '업무 메일 확인하기', '필라테스 수업', '저녁 식사 준비하기', '피아노 연습하기']
//배열은 참조변수라서 const 라도 값 변경이 가능.
const fruitsA = ["사과, '배", "바나나"];
fruitsA.push("망고");
console.log(fruitsA);
//다른 것으로 바꾸는 것은 불가능
fruitsA = ['우유구매', '업무 메일 확인하기', '필라테스 수업'];
// Uncaugth TypeError: Assignment to constant variable
</script>
</body>
</html>