반응형
Object.size = function(obj) {
var size = 0, key;
for (key in obj) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
// Get the size of an object
var size = Object.size(myArray);
출처 : http://stackoverflow.com/questions/5223/length-of-javascript-object-ie-associative-array
728x90
반응형
'웹 개발' 카테고리의 다른 글
iframe, frame 사용시 페이지 이동할때마다 깜빡임 현상 (메인 배경이 흰색이 아닌데 흰색으로 깜빡임 현상) (0) | 2019.08.23 |
---|---|
html -> input file 'accept' attribute(file 확장자 추가) (0) | 2019.08.17 |
javascript 레퍼런스 참조 없는 배열 복사(deep copy) (0) | 2019.08.17 |
html/javascript - enter키를 누르면 click event가 발생하는 문제 (0) | 2019.08.17 |
[javascript] self window close (0) | 2019.08.17 |