Preston Mayiekacodewithpres.hashnode.dev·Sep 19, 2023"Mastering JavaScript": Optional chaining in jSBefore the arrival of JavaScript ES6 (ECMAScript 2015), JavaScript language development happened very slowly. After the ES6 update, new advanced features are added each year. It is also important to note that modern browsers might not support all of ...Discusses11
Manik Agnishmanikagnish.hashnode.dev·Sep 18, 2023Demystifying the Nullish Coalescing Operator in JavaScriptNullish Coalescing Operator (??) is a relatively new addition to JavaScript, introduced with ES11. In this blog, we'll explore what it is, why it's useful, and how you can leverage it in your JavaScript projects. Syntax: const defaultAge = age ?? 18;...DiscussJavaScript
Gagan Pandeymechtotech.hashnode.dev·Sep 17, 2023A Journey Through ECMAScript Versions: ES5, ES6, ES7, ES8, ES9, and ES10A Journey Through ECMAScript Versions: ES5, ES6, ES7, ES8, ES9, and ES10 In the ever-evolving world of web development, staying up-to-date with the latest technologies and standards is crucial. JavaScript, as one of the core web development technolog...Discuss·6 likesJavaScript
Mainul Hasanmainulspace.hashnode.dev·Sep 9, 2023Optional Chaining and Nullish Coalescing: Safe Property Access in JavaScriptEver seen the Cannot read property ‘x’ of undefined error in your JavaScript? If so, you’re not alone. Many of us get this error when working with JavaScript objects and properties. But guess what? There are features like Optional Chaining and Nullis...DiscussJavaScript
muhammed shameelmuhammedshameel.hashnode.dev·Sep 7, 2023Understanding Async vs. Defer Script Loading in JavaScript<Script Loading Basics> Before we dive into the details of async and defer, let's revisit how scripts are traditionally loaded in HTML. htmlCopy code<script src="script.js"></script> This simple script tag includes an external JavaScript file, scrip...Discuss·61 readsJavaScript
Alexander KaranProblog.alexanderkaran.com·Aug 19, 2023Crafting Error Trails In JavaScriptIntercepting Errors and returning a new error with a more end-user-friendly message is a staple of JavaScript. However, this can cause us to lose steps in the stack trace or make debugging harder. Now thanks to Error.prototype.cause we can provide a ...Discuss·10 likes·37 readsJavaScript
Alexander KaranProblog.alexanderkaran.com·Aug 15, 2023JavaScript Last Item in an ArrayThe new method at allows you to return an item in an array at the given index. You might be thinking I can already do this with brackets. The great thing about at is it can take negative numbers and count back from the end of the array. The way at wo...Discuss·2 likes·55 readsJavaScriptJavaScript
Anisha Swain | The UI Girltheuigirl.hashnode.dev·Jul 10, 2023ECMAScript 2023 Highlights | The Features You Can't-MissECMAScript, the scripting language that powers the web, is the standardized scripting language commonly known as JavaScript. It has consistently evolved to meet the ever-growing demands of web development. Each new version brings with it a range of n...Discuss·97 readsWeb DevelopmentJavaScript
Pratima Adhikaripratima-adhikari.hashnode.dev·Jul 9, 2023Day 2: Understanding ECMAScript: The Evolution of Web Development"Let's first understand what ECMAScript is." Background In 1993, Mosaic, the first web browser with a graphical user interface (UI), was released, marking a significant milestone in the history of the web. The developers behind Mosaic recognized the ...Discuss·30 readsJavaScript
Rishu RajforWhat's Upcoming in Javascript2023newinjavascript2023.hashnode.dev·Jul 2, 2023What's New In Javascript 2023!In this article, we are going to see what new features are going to be introduced in es2023 so which is slated to be released somewhere between April to June of 2023, the version is also known as es14 because this is the 14th version of the ECMAScrip...Discuss·70 readsJavaScript