Changes between Initial Version and Version 2 of Ticket #7260
- Timestamp:
- Mar 8, 2011, 1:00:57 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7260
- Property Keywords HasPatch added
-
Property
Component
changed from
General
toPerformance
-
Ticket #7260 – Description
initial v2 1 {{{ 1 2 getParents : function( closerFirst ) 2 3 { … … 12 13 return parents; 13 14 }, 15 }}} 16 unshift method performance poor 14 17 15 unshift method performance poor16 18 example code 19 {{{ 17 20 var t = +new Date,s = [] 18 21 for(var i = 0;i<1000;i++){ … … 28 31 29 32 alert(+new Date - t) //21 33 }}} 30 34 in ie8