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...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·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...Discuss·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...DiscussJavascript 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...Discussvscode 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...DiscussReact
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....Discuss·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...Discuss·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...DiscussMastering JavaScriptFunctional Programming
Sophia Umehrueso.hashnode.dev·Jun 30, 2024The `this` Context of Arrow Functions in JavaScriptThis article will give a brief explanation on how to write arrow functions and focus more on the use of this and how it is expressed in functions. Table of Content Introduction What are Arrow Functions The this keyword Conclusion Additional Reso...Discuss#arrowfunction
isaac josephjosephisaac.hashnode.dev·Jun 29, 2024Unlocking The Power of JavaScript Arrow Function (=>)[Recap] - Use of function in programming In programming, we have some particular set of instructions that will be executed severally at different stages of program execution. To avoid redundancy in our code, we simply use function to define that set ...Discuss#arrowfunction