vote up 9 vote down star
3

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. :)

flag

10  
The Daily WTF, anyone? =) – gnovice Jun 29 at 17:49
14  
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 at 17:51
@gnovice was thinking the same thing at first glance. – John T Jun 29 at 17:51
1  
+1 for the effort. – Wadih M. Jun 29 at 17:53

7 Answers

vote up 44 vote down check

yes it does...

return num*-1;

or simply

return -num;
link|flag
1  
The only correct answer, as far as I'm concerned. No more answers needed. – peSHIr Jun 29 at 17:33
3  
As long as this is a compiled language where the compiler can optimize that multiplication away. – mmyers Jun 29 at 17:33
1  
@Emtucifor, multiplication is still performed either way. This answer is not wrong. – John T Jun 29 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 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 at 22:01
show 3 more comments
vote up -1 vote down

number *= -1; or number = number * (-1);

link|flag
vote up 2 vote down

You could use

number *= -1;

3 becomes -3 and -5 becomes 5 :)

link|flag
vote up 2 vote down

try something like number = number * (-1)

link|flag
vote up 3 vote down

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

link|flag
vote up 22 vote down

How about:

return -(number)

as -(-5) == 5.

link|flag
vote up 15 vote down

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|flag

Your Answer

Get an OpenID
or

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