howt to do equals in javascript code example
Example 1: less than equal to in javascript
| <= | less than or equal to | x <= 8 | true |
Example 2: not equal to in js
let a=12
if(a!=5){
console.log(true)
}
since a is not equal to 5, it will print true