Does such function exist? I created my own but would like to use an official one:

private function opposite(number:Number):Number
{
    if (number < 0)
    {
        number = Math.abs(number);
    }
    else
    {
        number = -(number);
    }
    return number;
}

So, -5 becomes 5 and 3 becomes -3.

Edit: Forgive me for being stupid. I'm human. :)

link|improve this question

15  
The Daily WTF, anyone? =) – gnovice Jun 29 '09 at 17:49
17  
Guys, seriously, why the downvotes? We're supposed to be here to help each other. This is a serious question, there's no need to be dicks about it. – DoctaJonez Jun 29 '09 at 17:51
@gnovice was thinking the same thing at first glance. – John T Jun 29 '09 at 17:51
1  
+1 for the effort. – Wadih M. Jun 29 '09 at 17:53
feedback

closed as too localized by Robert Harvey Apr 27 '11 at 22:33

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

6 Answers

up vote 50 down vote accepted

yes it does...

return num*-1;

or simply

return -num;
link|improve this answer
2  
The only correct answer, as far as I'm concerned. No more answers needed. – peSHIr Jun 29 '09 at 17:33
3  
As long as this is a compiled language where the compiler can optimize that multiplication away. – Michael Myers Jun 29 '09 at 17:33
1  
@Emtucifor, multiplication is still performed either way. This answer is not wrong. – John T Jun 29 '09 at 18:07
2  
@John T, not true if the number is stored in two's compliment. The value of -num can be computed by flipping all the bits and adding one (~num + 1) which is significantly faster than multiplication. – Kevin Loney Jun 29 '09 at 18:11
2  
If a developer in your shop does not understand how that piece of code works I fear for your shop's well being and success. – John T Jun 29 '09 at 22:01
show 3 more comments
feedback

How about:

return -(number)

as -(-5) == 5.

link|improve this answer
feedback

Simply putting a negative sign in front of the variable or number will do the trick, even if it's already negative:

-(-5) => 5
$foo = 3; -$foo => -3
link|improve this answer
feedback

This a trick question? why a function? just do number * -1, multiply with -1 that is.

link|improve this answer
feedback

try something like number = number * (-1)

link|improve this answer
feedback

You could use

number *= -1;

3 becomes -3 and -5 becomes 5 :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.