Difference Between == and === in Javascript !
== and === are used to check compare operator .
== variable is checked for value equality only, before checking the value it converts the value into another type to match each other
=== variable is checked for same value as well as same typ...
shubham.hashnode.dev2 min read