how to convert -1 to 1 with javascript ?
var count = -1; //or any other number -2 -3 -4 -5 ...
or
var count = 1; //or any other number 2 3 4 5 ...
result should be
var count = 1; //or any other number 2 3 4 5 ...
|
how to convert -1 to 1 with javascript ?
or
result should be
|
|||||
|
|
|||
|
|
|
Alternative approach (might be faster then
Note that bitwise operations in javascript are always in 32-bit. |
|||||||||
|
|
If the number of interest is
(edit: as Some pointed out The above makes use of the Javascript conditional operator. This is the only ternary (taking three operands) Javascript operator. The syntax is:
If the |
|||||||||||
|