Grasping the difference between the strict [ === ] and loose [ == ] equality operators
Introduction
Hey, JavaScript Lovers, I'm back with one more blog, in this I'll be simplifying the two equality operators namely loose equality == and strict equality === operators.
In other programming languages, we only have the practice to use == o...
brupadhyay.hashnode.dev4 min read
Akash Kumar Singh
Developer
Great blog but one input I will give from my side is that loose equality ( == ) also does type check if the type is the same it works in the same way as ( === ) works and if the type is not the same then it does type coercion.