Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 6, 2024Day 16: Mastering Modern JavaScript - Key Features of ES6Today was meant to be a relaxed writing session for our Day 16 blog post, complete with a glass of white wine. But after a quick stop at the ShopRite mall to pick up a new facial product (as you may have seen in my latest tweet on X), I missed the ch...Discuss·10 likesJavaScript
Vivekheyvivek.com·Jul 6, 2024The Future of Web Development: Embracing JavaScript Web Components 🚀The world of development is forever changing, and this has placed JavaScript Web Components at the threshold of becoming an enormous potential instrument set that might change how we build and deploy applications. They are potential replacements for ...Discuss·11 likes·31 readsJavaScript
Vivekheyvivek.com·Jul 6, 2024Latest Releases of JavaScript ES2023JavaScript has been—the unanimously adopted language of the web—and it's only getting better with time. Plenty of new features and improvements come to the table with each and every edition. Therefore, the ECMAScript specification for 2023 comes load...Discuss·10 likesJavaScript
Hugo Tavareshugotav.hashnode.dev·Jun 5, 2024Introduction to JavaScript ES6+: Essential Features for BeginnersThis article introduces essential ES6 features for modern JavaScript development, including let and const for variable declaration, arrow functions for concise syntax, template literals for easier string manipulation, destructuring assignment for unp...DiscussJavaScript
Jeandre Melariablog.jeandremelaria.nl·Jan 29, 2024Understanding JavaScript variables: var, let, and constJavaScript, the programming language that powers the dynamic content on the web, provides developers with various ways to declare variables. In this article, we'll delve into the differences between three commonly used keywords for variable declarati...Discussvar let const
Peter Chijiokepeterchijioke.hashnode.dev·Sep 10, 2023The Crucial Role of TypeScript in Node.js ProjectsIntroduction In the world of server-side JavaScript development, Node.js has become a dominant force, enabling developers to build high-performance applications. However, as projects grow in complexity and scale, maintaining code quality and reducing...DiscussNode.js
Badreddine Boudaoudbadreddineboudaoud.hashnode.dev·Mar 27, 2023Eight(8) ES6(ECMAScript 6) features that you need to know before learning ReactIntroduction ES6, also known as ECMAScript 2015, is the sixth version of the ECMAScript language specification. ECMAScript is a standardized scripting language specification on which many programming languages, including JavaScript, are based. ES6 wa...Discuss·1 like·68 readsReact
Aryan Dayalaryandayal.hashnode.dev·Feb 14, 2023Let vs Var vs CosntVar Before the advent of ES6, var declarations ruled. There are issues associated with variables declared with var, though. That is why it was necessary for new ways to declare variables to emerge. First, let's get to understand var more before we di...Discuss·1 like·85 readsWeb Development
Brandon Damuedamue.hashnode.dev·Feb 2, 2023Understanding the Spread Operator(...) in JavaScriptIn today's episode of talking about awesome JavaScript features, we are going to turn our attention to the Spread operator(...) or Spread syntax. At the end of this article, you'll find a curated list of the links to other articles I have written in ...Discuss·96 readsJavaScript
Alvison Hunteralvisonhunter.hashnode.dev·Aug 10, 2022Basic array operations combining Map, Filter & Reduce in JavaScriptHowdy Folks! Hope all is good with thee today. Nowadays, it is hard to be coding without applying functional programming concepts to our code, which makes it more readable, maintainable and testable. A very common and popular mindset in the modern wo...Discuss·160 readsJavaScript