MozPhoenixClubJUET / JUEThacks2020

Annual Hackathon of JUET.
http://juethacks.co
3 stars 13 forks source link

(JS-0050) Avoid use of `==` and `!=` #34

Open lovetyagi-17 opened 2 years ago

lovetyagi-17 commented 2 years ago

Description

It is considered good practice to use the type-safe equality operators === and !== instead of their regular counterparts == and !=. If one of those occurs in an innocent-looking statement such as a == b the actual problem is very difficult to spot.

Occurrences

There are 54 occurrences of this issue in the repository.

See all occurrences on DeepSource → deepsource.io/gh/MozPhoenixClubJUET/JUEThacks2020/issue/JS-0050/occurrences/

lovetyagi-17 commented 2 years ago

I am working on this!! #34