I'm searching for an efficient way to check if two numbers have the same sign.
Basically I'm searching for a more elegant way than this:
var n1 = 1;
var n2 = -1;
( (n1 > 0 && n2 > 0) || (n1<0 && n2 < 0) )? console.log("equal sign"):console.log("different sign");
A solution with bitwise operators would be fine too.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…