ñot equal operator in javascript code example

Example 1: javascript and operator

//AND Operator expressed as &&

const x = 7;
const y = 4;

(x == 7 && y == 5); // false
(x == 3 && y == 4); // false
(x == 7 && y == 4); // true

if (condition == value && condition == otherValue) {
  return something;
}

Example 2: javascript does not equal

!= not equal 
!== not equal value OR type

Example 3: 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

Example 4: javascript not equal

0 !== "0"
0 !== 0

Example 5: and operator in javascript

//&& returns true if both values are true
//or returns the second argument if the first is true
var a = true
var b = ""
var c = 1

true && "" //""
"" && 1 //""
false && 5 //false