Zack Hublog.zackhu.com·Jan 6, 2025Arrow Function vs Normal Methodthis binding: Arrow function: Does not has its own this keyword, it inherits this from the surrounding lexical scope where it was defined. This feature is particularly useful when working with callbacks, as the context in which the function is cre...#arrowfunction
Rupal Singhalrupalsinghal.hashnode.dev·Dec 23, 2024Mastering ES6: The Modern JavaScript Features You Need to KnowWith the advent of ES6 (ECMAScript 2015), JavaScript became more powerful, readable, and developer-friendly than ever before. If you’re a developer looking to brush up on modern JavaScript, mastering ES6 is essential. In this blog post, we’ll walk th...2 likesES6
gayatri kumargeekee.hashnode.dev·Nov 6, 2024Arrow Functions and More: Modern JavaScript Syntax!Imagine walking through a modern art gallery where every piece of art is minimal, clean, and elegant. Just as modern artists use simple forms to convey powerful ideas, JavaScript’s arrow functions are a sleek and concise way to write functions—stripp...48 likesWeb Developmentjs
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 20, 2024Understanding JavaScript FunctionsI’ve been learning JavaScript on my own—just me, my computer, and my little room with a bed, plastic chair, and desk. I open my computer every day, excited to dive into JavaScript using Google Chrome, my favorite browser. My workspace inside my be...10 likes·45 readsstanleyowarieta
dheeraj korangagyannbaato.hashnode.dev·Oct 14, 2024Arrow Functions in JavaScriptArrow functions are a concise syntax for writing functions in JavaScript, introduced in ES6. They allow for a shorter syntax than traditional function expressions and also provide different behavior for this. Syntax: Arrow functions: Have a shorter...Javascript for Begineersjs
Prajnesh Nvscode-extention-preciser.hashnode.dev·Sep 20, 2024Preciser: Streamline Your Code with VSCodeHow It Works: Select Your Method: Pick a method with a block body. Invoke Preciser: Use the command palette to convert it. Instant Transformation: Watch your method turn into a clean expression body. Example Before: public int Add(int a, int b) { ret...vscode extensions
Jay Pateljaywritestech.hashnode.dev·Sep 15, 2024Essential JavaScript Skills for React Development - Part 1React, developed by Facebook (now Meta), is a popular JavaScript library for building user interfaces, particularly in single-page applications. The key benefit is the reusability of the UI elements due to its component-based structure. However, know...React
Zeeshan Safdarzeeshansafdar.hashnode.dev·Sep 4, 2024Arrow Functions in JavaScriptBesides function declarations and function expressions, JavaScript also has another very concise syntax for defining a function. These functions are called arrow functions. In this concept, we will focus on the syntax used to write an arrow function....1 likeJavaScript
Megha Bathlameghabathla.hashnode.dev·Aug 24, 2024Understanding the Difference Between Declaring Arrow Functions with const, let, and var in JavaScriptIn JavaScript, there are three primary ways to declare variables or functions: const, let, and var. Although all three can be used to declare arrow functions, each has its own behaviors and implications. Understanding these differences can help you a...10 likes#arrowfunction
Vashishth Gajjarvashtech.hashnode.dev·Jul 13, 2024Chapter 3: Functions and ScopeWelcome back to "Mastering JavaScript"! In Chapter 2, we explored the basics of JavaScript, including variables, data types, operators, and control flow. Now, let's dive into functions and scope, which are essential concepts for writing efficient and...Mastering JavaScriptFunctional Programming