RDRohan Dharainbitzloop.hashnode.dev·Aug 4, 2025 · 2 min readWhy (typeof null) returns an object in JavaScript?Lets discuss and understand this well known bug in JavaScript that was kept intentionally due to compatibility and existing flow of the code.null is a primitive value in JavaScript. console.log(typeof "MyName"); // string console.log(typeof true); ...02MP
RDRohan Dharainbitzloop.hashnode.dev·Jul 21, 2025 · 1 min readTypes of Array -- 1D,2D,Jagged ArrayIn the above picture I have made the pictorial representation of 3 types of arrays, I think it may help you. Let me know if any modification or elaboration required.00