Himanshu Kumarhimanshukrmr.hashnode.dev·Apr 9, 2023Understanding “==” (Abstract Equality) and “===” (Strict Equality) in JavaScriptA lot of people including me had a misconception that in JavaScript “==” doesn’t check type and “===” does, but sometimes we have to unlearn some things. So before understanding these two equalities we have to understand Coercion. What is Coercion Co...68 readsJavaScript
Milind Mishramilind.hashnode.dev·Jan 12, 2023Abstract Equality and Special Types!To better understand equality and its use cases let's see the available types in Javascript. JavaScript has several special types that are used to represent specific types of data. Various Types available in JavaScript Undefined: A variable that has...394 readsJavaScript