JavaScript4 Min Read soundaryaonDecember 6, 2025 7 Things I Wish I Knew Earlier: The Truth About var vs let vs const & JavaScript Data Types When I first started learning JavaScript, the terms var vs let vs const kept showing up everywhere. And honestly? I was confused. Why three…
JavaScript3 Min Read ManasironOctober 24, 2025 Closure in JavaScript – Explained with Real-Life Examples I still remember the first time I stumbled upon the term “JavaScript closures.” It felt like a word from another planet. Everyone around me…
JavaScript3 Min Read ManasironOctober 14, 2025 JavaScript 2D Array – Two Dimensional Arrays in JS When I first started learning JavaScript, I could handle single arrays easily. But when my mentor introduced something called an array of…
JavaScript4 Min Read Ebenezer M.A.onSeptember 23, 2025 Generator Function in JavaScript & next() Method in 2025 (With Real Use Cases 🚀) If you’ve ever wrestled with large datasets, streaming APIs, or complex async code, you’ve probably wished there was a way to control your…
WikitechyonDecember 21, 2020 Check if values are exists in Array – jQuery and JavaScript If you are familiar with PHP, where you can use the in_array() function to search value in the Array, and it returns the Boolean value ( TRUE…