Syncfusionsyncfusion-blogs.hashnode.dev·Sep 12, 2024What’s New in Node.js 22?TL;DR: Let's explore the key features of Node.js 22, including ECMAScript modules support and the V8 engine update. This release introduces the Maglev compiler and a built-in WebSocket client for enhanced performance and real-time communication. Impr...DiscussNode.js 22
ِAya Nabil Othmanayanabilothman.hashnode.dev·Sep 11, 2024Configure Jest to use it with NodeJS ECMAScript ModulesInitialize your application: npm init To use ES modules, add type: "module" to package.json file. Install Jest npm i jest Initialize Jest npm init jest@latest In jest.config.mjs file: de-comment transform key and assign it a value like tr...Discuss·2 likesJavaScript
Syncfusionsyncfusion-blogs.hashnode.dev·Sep 9, 2024What’s New in JavaScript: ECMAScript 2024 (Edition 15)TL;DR: Discover the groundbreaking features of JavaScript ECMAScript 2024. This guide explores the latest innovations designed to transform your coding experience. From the new groupby method for effortless data grouping to the game-changing Temporal...DiscussJavaScript
Parveen Kumarparveenpal.hashnode.dev·Aug 23, 2024What is the difference between .js, .cjs and .mjs file extensionCJS, MJS, and .JS are file extensions used to denote different types of JavaScript files. Here's the difference between them: .JS (JavaScript): The .js extension is the most common file extension for JavaScript files. It is used to indicate that a f...Discussmjs
Nirmal Sankalananirmalsankalana.hashnode.dev·Aug 11, 2024Understanding CJS and ESM Imports and ExportsAs JavaScript has evolved, its module system has also improved. Two primary module formats dominate the ecosystem: CommonJS (CJS) and ECMAScript Modules (ESM). Understanding these two formats is crucial for developers, especially when working with mo...Discuss·10 likesJavaScript
Shaunak Deshpandeshaunak.hashnode.dev·Aug 7, 2024ECMASCRIPT 2024 | What's new?JavaScript, the dynamic language that powers much of the web, is constantly evolving. The ECMAScript specification, which serves as the foundation for JavaScript, sees annual updates that bring new features and improvements. 1. Top-Level Await One of...Discuss·2 likes·34 readsJavaScript
Jobin Mathewjobin-mathew.hashnode.dev·Aug 2, 2024🚀 Introducing New ECMAScript Set Methods in TypeScript 5.5One of the standout features of TypeScript 5.5 is the New ECMAScript Set Methods. This feature introduces powerful new methods to the Set object, aligning TypeScript with the latest ECMAScript standards and making set operations more intuitive and ef...DiscussNew Typescript FeaturesTypeScript
Shivam Kumarshivammishra828.hashnode.dev·Jul 31, 2024Understanding Abstract vs. Strict Equality in JavaScript: Beyond the BasicsIn the realm of JavaScript development, equality comparisons often lead to confusion and misconceptions, especially when it comes to Abstract Equality (==) and Strict Equality (===). Many developers, especially those new to JavaScript, might believe ...Discuss·1 like·31 readsJavaScript
Vikash Kumariamvikashkumar.hashnode.dev·Jul 14, 2024The Evolution of JavaScript: From 1995 to the Powerhouse of TodayIntroduction JavaScript is one of the most widely used programming languages in the world, powering everything from dynamic websites to complex web applications. Its journey from a simple scripting language to a cornerstone of modern web development ...DiscussJavaScript
Priyojit Singhanerdbash.hashnode.dev·Jul 9, 2024Understanding the Basics of JavaScript FunctionsFunctions are another important part of the JavaScript language. They help us bundle a piece of code that performs a single task into a single unit, which we can then invoke as many times and anywhere we want. Functions are called first-class citizen...Discuss·1 likeJavascriptJavaScript