옵션 |
|
var i, start, temp, result1, result2;
start = new Date()*1;
i = 9999999;
while( i-- ) temp = [];
result1 = new Date()*1 - start;
start = new Date()*1;
i = 9999999;
while( i-- ) temp = {};
result2 = new Date()*1 - start;
alert( result1 +":"+ result2 );
오브젝트를 배열형태로 사용하면 배열보다 가볍다는걸 테스트하는 코드인데
당연히 앞쪽이 숫자가 더 크게 나올줄알앗는데 이상하게 리스트가 더 크게 나오네요..;;
제가 뭘 잘못 알고있는거죠?