Can you guys help me determine the performance difference of each of these statements? Which one would you use?
Making a new Array using
- var new_list = new Array(); //or - var new_list = [];
Appending element using
- push('a') - new_list[i]; (if i know the length)
Ternary operator or
if() {} else (){}
Trying to make isodd function, which is faster
(! (is_even)) or (x%2!=0)
forEach()
or normal iteration
one more
a= b = 3;
orb=3; a=b;
[edit: I'm making a Math Library. So any performance hacks discussions are also wele :) ]
Thanks for your help.
Can you guys help me determine the performance difference of each of these statements? Which one would you use?
Making a new Array using
- var new_list = new Array(); //or - var new_list = [];
Appending element using
- push('a') - new_list[i]; (if i know the length)
Ternary operator or
if() {} else (){}
Trying to make isodd function, which is faster
(! (is_even)) or (x%2!=0)
forEach()
or normal iteration
one more
a= b = 3;
orb=3; a=b;
[edit: I'm making a Math Library. So any performance hacks discussions are also wele :) ]
Thanks for your help.
Share Improve this question edited Sep 29, 2020 at 9:08 Alex 1,5801 gold badge15 silver badges27 bronze badges asked Apr 14, 2009 at 2:39 unj2unj2 53.6k90 gold badges252 silver badges380 bronze badges 1- I prefer using 'var myArray = [];' because it's simpler... – Steve Harrison Commented Apr 14, 2009 at 3:15
6 Answers
Reset to default 5I've always assumed that since (x&1) is a bitwise operation, it would be the fastest way to check for even/odd numbers, rather than checking for the remainder of the number.
Performance characteristics for all browser (especially at the level of individual library functions) can vary dramatically, so it's difficult to give meaningful really meaningful answers to these questions.
Anyhoo, just looking at the fast js engines (so Nitro, TraceMonkey, and V8)
[ ]
will be faster thannew Array
--new Array
turns into the following logiccons
= lookup property "Array", if it can't be found, throw an exception- Check to see if
cons
can be used as a constructor, if not: throw an exception thisVal
= runtime creates a new object directlyres
= result of callingcons
passingthisVal
as the value forthis
-- which requires logic to distinguish JS functions from standard runtime functions (assuming standard runtime functions aren't implemented in JS, which is the normal case). In this caseArray
is a native constructor which will create and return a new runtime array object.- if
res
is undefined or null then the final result isthisVal
otherwise the final result isres
. In the case of callingArray
a new array object will be returned andthisVal
will be thrown away
[ ]
just tells the JS engine to directly create a new runtime array object immediately with no additional logic. This meansnew Array
has a large amount of additional (not very cheap) logic, and performs and extra unnecessary object allocation.newlist[newlist.length] = ...
is faster (esp. if newlist is not a sparse array), but push is sufficiently mon for me to expect engine developers to put quite a bit of effort into improving performance so this could change in time.If you have a tight enough loop there may be a very slight win to the ternary operator, but arguably that's an engine flaw in the trival case of
a = b ? c : d
vsif (b) a = c; else a = d
Just the function call overhead alone will dwarf the cost of more or less any JS operator, at least in the sane cases (eg. you're performing arithmetic on numbers rather than objects)
The
foreach
syntax isn't yet standardised but its final performane will depend on a large number of details; Often JS semantics result in efficient looking statements being less efficient -- eg.for (var i in array) ...
is vastly slower thanfor (var i = 0; i < array.length; i++) ...
as the JS semantics requirein
enumeration to build up a list of all properties on the object (including the prototype chain), and then checking to make sure that each property is still on the object before sending it through the loop. Oh, and the properties need to be converted from integers (in the array case anyway) into strings, which costs time and memory.
I'd suggest you code a simple script like:
for(var i = 0; i < 1000; i++){
// Test your code here.
}
You can benchmark whatever you want that way, possibly adding timing functions before and after the for
statement to be more accurate.
Of course you'll need to tweak the upper limit (1000 in this example) depending on the nature of your operations - some will require more iterations, others less.
- Both are native constructors probably no difference.
- push is faster, it maps directly to native, where as [] is evaluative
- Probably not much of a difference, but technically, they don't do the same thing, so it's not apples to apples
- x%2, skips the function call which is relatively slow
- I've heard, though can't find the link at the moment, that iteration is faster than the foreach, which was surprising to me.
Edit: On #5, I believe the reason is related to this, in that foreach is ordered forward, which requires the incrementor to count forward, whereas for loops are ever so infinitesimally faster when they are run backward:
for(var i=a.length;i>-1;i--) {
// do whatever
}
the above is slightly faster than:
for(var i=0;i<a.length;i++) {
// do whatever
}
As other posters suggest, I think doing some rough benchmarking is your best bet... however, I'd also note that you'll probably get very different results from different browsers, since I'm sure most of the questions you're asking e down to specific internal implementation of the language constructs rather than the language itself.
This page says push is slower. http://dev.opera./articles/view/efficient-javascript/?page=2