Notice
Recent Posts
Recent Comments
Link
목록유사배열객체 (1)
-
javascript::유사배열객체
# 유사배열객체- 일반 객체에 length 프로퍼티가 있는 경우- 객체임에도 불구하고 자바스크립트의 표준 배열 메서드를 사용하는 게 가능하다.12345678var arr = ['bar'];var obj = {name: 'foo', length:1}; arr.push('baz');obj.push('baz'); // error!, 유사배열객체 이지만 객체는 아니다~! Array.prototype.push.apply(obj, ['baz']);console.log(obj); //(출력값){'1': 'baz', name: 'foo', length:2}cs- arguments 객체나 jQuery 객체가 유사배열객체 형태로 되어 있다.
언어/javascript
2018. 1. 4. 21:17