MZMd Zulqarnaininjs-mastery-101.hashnode.dev00String Polyfills and Common Interview Methods in JavaScript19m ago · 6 min read · How polyfills come to play When developing modern JavaScript applications, ensuring compatibility across different browsers and environments is a common challenge. New features are frequently introducJoin discussion
MZMd Zulqarnaininjs-mastery-101.hashnode.dev00Mastering Template Literals in JavaScript1d ago · 3 min read · If you’ve been writing JavaScript for a while, you’ve likely spent far too much time fighting with single quotes, double quotes, and the + operator just to build a simple sentence. Enter Template LiteJoin discussion
MZMd Zulqarnaininjs-mastery-101.hashnode.dev00Array Flatten in JavaScript1d ago · 6 min read · In programming, an array of arrays (also called a nested or multidimensional array) is a structure where each element of a main array is itself another array. Think as you want to open a xyz file, youJoin discussion
MZMd Zulqarnaininjs-mastery-101.hashnode.dev00JavaScript Modules: Import and Export Explained2d ago · 4 min read · Does modules are from the beginning of the JavaScript? NO. Before Modules, all code shared a single global space, which lead to major headches of Global Namespace pollution, The "Script order" NightmaJoin discussion
MZMd Zulqarnaininjs-mastery-101.hashnode.dev00The new Keyword in JavaScriptMar 28 · 5 min read · The new keyword creates the new instances every time the constructor function or a Class is Called. What the new keyword does // using Constructor function function Animal(species) { this.species = Join discussion