I have a variable of type Number, and i like to obtain the sign (if is ‘-‘ i like to have -1 and if ‘+’ i like to have 1). So, i made this:
var sign = Math.abs(n) / n;
But, there is any other way? Better than this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll be in trouble if n == 0… how about this: