!= not equal !== not equal value OR type
0 !== "0" 0 !== 0
let a=12 if(a!=5){ console.log(true) } since a is not equal to 5, it will print true