I want a Simple Javascript function to get the difference between two numbers in such a way that foo(2, 3) and foo(3,2) will return the same difference 1.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
|||||||||||||||
|
|
Using ternery
Or
|
|||||||||||||
|
|
It means you want to return absolute value.
|
|||
|
|
|
Seems odd to define a whole new function just to not have to put a minus sign instead of a comma when you call it:
vs
(with difference calling another function you defined to call that returns the output of the first code example). I'd just use the built in abs method on the Math object. |
|||
|
|