const arrayLikeObject = {
0 : 'hello',
1 : 'world',
length : 2,
}
// 객체를 object로 바꾸어줌
const arr = Array.from(arrayLikeObject)
console.log(arr) // ['hello', 'world']
console.log
function generatePriceList(){
// arguments는 배열이 아니다... 유사 배열 객체이다.
console.log(Array.isArray(arguments)) // false
// 배열 고차함수 메서드를 사용할 수 없다
return arguments.map((item) => item + '원')
}
// 가변적인 인자로 받음.
generatePriceList(10,20,30,40)
실제로 arguments를 까보면, proto에 map, filter, find 배열 고차함수에 접근 할 수 없다.