var one = 1415;
var two = 2343;
var three = 11;
How to get the biggest number from these variables? (the shortest way wanted)
How to get the biggest number from these variables? (the shortest way wanted) |
||||
|
If you have them in an array, you can do this:
|
||||
|
|
Math.max(one, two, three) |
|||
|
|
Put them in an array, sort them, and take the last of the sorted values:
|
|||||||
|
|
If your values are in an array, try reduce :
|
|||||
|
biggestNumber(one, two, three) /* returned value: (Number) 2343 */ |
|||
|
|
biggest=twois quite short. Could be shortened further by using shorter variable names. – Mark Byers Sep 10 '10 at 21:13