배열의 끝에 하나 이상의 요소를 추가하고, 배열의 새로운 길이를 반환
const array1 = [1.2]; array1.push(3,4,5); console.log(array1); [1,2,3,4,5]