javascript not equal

JavaScript
let a=12
if(a!=5){
  console.log(true)
}
since a is not equal to 5, it will print true
!= not equal 
!== not equal value OR typelet a=12
if(a!=5){
  console.log(true)
}
since a is not equal to 5, it will print truex >= y| <= | less than or equal to |	x <= 8 | true |0 !== "0"
0 !== 0
Source

Also in JavaScript: