Anish Agrawalanish29801.hashnode.dev·Nov 8, 2024ECMAScript: The Backbone of JavaScriptJavaScript is an essential part of web development, but behind the scenes, ECMAScript (ES) defines the language’s standards and evolution. In this post, we’ll explore what ECMAScript is, its significance, and its versions, with a deep dive into some ...Discussecmascript
Dana Ciocandanaciocan.com·Nov 5, 2024Why are there so many types of JavaScript modules?Let’s cast our minds back to 1995. Netscape Navigator was the predominant browser folks were using to get their internet fix (if at all - there was certainly no guarantee you had the internet at home back then!) and connecting to the internet sounded...Discuss·2 likes·35 readsJavaScript
nidhinkumarblog.nidhin.dev·Oct 23, 2024ECMAScript TC39 - Smaller AdditionsThe ECMAScript TC39 committee gathered last week in Tokyo and they have analyzed the new language proposals and moved to one of the five maturity stages they have to go through before they are officially adopted in the language this time. STAGE 0 - ...DiscussJavaScript
nidhinkumarblog.nidhin.dev·Oct 22, 2024ECMAScript TC39 - Import AttributesThe ECMAScript TC39 committee gathered last week in Tokyo and they have analyzed the new language proposals and moved to one of the five maturity stages they have to go through before they are officially adopted in the language this time. STAGE 0 - ...DiscussJavaScript
nidhinkumarblog.nidhin.dev·Oct 21, 2024ECMAScript TC39 - Regex EscapeThe ECMAScript TC39 committee gathered last week in Tokyo and they have analyzed the new language proposals and moved to one of the five maturity stages they have to go through before they are officially adopted in the language this time. STAGE 0 - ...DiscussJavaScript
nidhinkumarblog.nidhin.dev·Oct 20, 2024ECMAScript TC39 - IteratorsThe ECMAScript TC39 committee gathered last week in Tokyo and they have analyzed the new language proposals and moved to one of the five maturity stages they have to go through before they are officially adopted in the language this time. STAGE 0 - ...DiscussJavaScript
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 10, 2024ECMAScript(ES6) featuresWhat is ECMAScript? ECMAScript (often abbreviated as ES) is a scripting language specification standardized by ECMA International, a European standards organization. It provides the rules, guidelines, and standards that define how scripting languages...DiscussJavaScript CoreJavaScript
Arturcode-with-arthur.hashnode.dev·Oct 3, 2024The Power of TypeScript: Why JavaScript Developers Should Make the SwitchAs JavaScript developers, we’re all familiar with the flexibility and simplicity of the language. It’s what makes JavaScript so versatile, powering both the front-end and back-end of web applications. However, as our projects grow larger and more com...DiscussTypeScript
Shivam Sharmashivam-sharma.hashnode.dev·Sep 27, 2024Avoiding Default Exports: A Guide for JavaScript DevelopersWhat are Default Exports in JavaScript Modules? Default exports allow you to export a single value from a module that can be imported with any name. This value is the default export for the module and can be any type, such as a function, object, or p...DiscussJavaScript
Tapas Adhikaryblog.greenroots.info·Sep 23, 2024Exploring Advanced JavaScript Features: A Deep Dive into ECMAScript 2023 UpdatesECMAScript, also known as the backbone of JavaScript, has come a long way since its birth at Netscape in 1995. Within two years, it was standardized as ECMAScript 1. It only took ECMAScript 4 years to reach its third generation. By 1999, it had gaine...Discuss·18 likes·115 readsGeneral Programming