pretty straightforward but i just want to know which is faster... coz i believe simply multiplying a number by -1 is much faster than calling a predefined method, provided that you are sure that value is negative.. but if that's the case then what is the abs() function for? -simply for making sure that the value returned would always be positive regardless of value's sign??
|
|
|||
|
|
|
I did some profiling with these implementations:
I got the following result on my Win XP with Crome 1.0.154.36, Opera 9.61, Firefox 3.0.5 and IE 7.0.5730.11 (values are normalized after the fastest result):
Conclusion: -a is the fastest, tightly followed by a*-1. abs(a) is the slowest but most clear way to do it. My Recommendation: Use Math.abs(a). If you are in a tight loop and by profiling has found it to be too slow, you can use a local reference to the abs function:
If I had added the local reference to the table above it would have been 1.3 for Crome, 6.1 for Opera, 7.2 for Firefox and 19.7 for IE. If it still is to slow and your profiling shows it is because of the abs(a) you can change calls to abs(a) with inline test3. However, on my 1.7GHz machine IE only took 890ms to do 500 000 test of Math.abs(a). |
|||
|
|
|
|
I would suggest picking the method that more clearly shows your intention, rather than worrying about the performance. In this case, the performance gain of multiplying by -1 is probably minimal. When you use |
||
|
|
|
|
I suppose it depends on the implementation, but
So, in theory, it just adds a quick test before multiplying. But, yes, negating a negative sign is the sole purpose. The point is that a simple @olliej [comments] True. Simple edit, though. ;)
|
||||||||
|
|
|
A style question: Why use |
||
|
|
|
Just the
So unless you're absolutely sure that the number is negative to begin with, you have to do some tests, which cost more time. Might as well do math.abs(). But really, if the performance difference between abs() and *-1 matters in your JS, your probably have more serious issues. |
||
|
|
