fusion
0
Q:

not equal to sign in js

let a=12
if(a!=5){
  console.log(true)
}
since a is not equal to 5, it will print true
1
0 !== "0"
0 !== 0
1
// Operator / Description
	==		// equal to
	===		// equal value and equal type
	!=		// not equal		
	!==		// not equal value or not equal type	
	>		// greater than	
	<		// less than	
	>=		// greater than or equal to	
	<=		// less than or equal to
0

New to Communities?

Join the community