Prince Patelprincewrite.hashnode.dev·Aug 6, 2024Understanding Null in JavaScript: A Primitive or an Object?JavaScript is full of quirks, and one of the most puzzling is the treatment of null. While the official ECMAScript specification defines null as a primitive value, using the typeof operator reveals a surprising result: it returns "object". This appar...1 likeJavaScript
Ankit Bajpaiankitbajpai1607.hashnode.dev·Jun 24, 2023The Power of Currying in JavaScriptJavaScript, being a versatile and dynamic programming language, offers developers a wide range of powerful features. One such feature is currying, a technique that allows functions to be partially applied and transformed into new functions. Currying ...41 reads#CodeReuse