How to check if two integers have opposite signs in TypeScript

1 Answer

0 votes
let x: number = 3, y: number = -9;            
let b: boolean = ((x ^ y) < 0); 
console.log(b);
       
x = 5, y = 6;
b = ((x ^ y) < 0); 
console.log(b);
       
  
     
/*
run:
      
true
false
       
*/

 



answered Jul 24, 2025 by avibootz

Related questions

...