Preparation Code Preparation HTML (this will be inserted in the <body>
of a valid HTML5 document in standards mode) (useful when testing DOM operations or including libraries) <script src ="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" >
</script >
<script src ="//documentcloud.github.com/underscore/underscore-min.js" >
</script >
<script >
window .underscore = _.noConflict ();
</script >
<script src ="https://raw.github.com/bestiejs/lodash/master/lodash.min.js" >
</script >
<script >
window .lodash = _.noConflict ();
</script >
Setup JS var $ = window .$ ,
lodash = window .lodash ,
underscore = window .underscore ;
var a = [],
newArray = [],
pi = Math .PI ;
for (var i = 1 , max= 100 ; i <= max ; i++) {
a.push ('Fundamental alert number ' + i);
}
Teardown JS
Test cases
Test #1 Title *
Async
Code * $.each (a, function (index, val ) {
newArray.push (val);
});
Test #2 Title *
Async
Code * for (var i = 0 , len = a.length ; i < len; i++) {
newArray.push (
a[i]
);
}
Title *
Async
Code * underscore.each (a, function (item ) {
newArray.push (
item
);
});
Title *
Async
Code * lodash.each (a, function (item ) {
newArray.push (
item
);
});
Title *
Async
Code * underscore (a).each (function (item ) {
newArray.push (
item
);
});
Title *
Async
Code * for (var b = a[0 ], len = a.length ; len; b = a[--len]) {
newArray.push (
b
);
}
Title *
Async
Code * var i = 0 , len = a.length ;
while (i != len) {
newArray.push (a[i++]);
}