Home Web Front-end Front-end Q&A What are the advantages of es6 arrow functions?

What are the advantages of es6 arrow functions?

Mar 07, 2022 pm 05:11 PM
es6 advantage arrow function

es6 Advantages of arrow functions: 1. Concise syntax, such as "parameters => {statements;};", which is more convenient to apply; 2. Ability to return implicitly; 3. More intuitive function Binding of domain and this (does not bind this).

What are the advantages of es6 arrow functions?

The operating environment of this tutorial: Windows 7 system, ECMAScript version 6, Dell G3 computer.

We all know that there are many ways to define functions in JavaScript. The most common one is to use the function keyword:

// 函数声明
function sayHi(someone) {
  return `Hello, ${someone}!`;
}
// 函数表达式
const sayHi = function(someone) {
  return `Hello, ${someone}`;
}
Copy after login

The function declaration and function expression above are called regular functions.

There is also the new arrow function syntax in ES6:

const sayHi = (someone) => {
  return `Hello, ${someone}!`;
}
Copy after login

Compared with the functions in the original JS, the arrow functions added in ES6 are more concise and more convenient to apply.

Advantages of es6 arrow function:

1. Concise syntax

Take an array and double it before outputting it.

删掉一个关键字,加上一个胖箭头;
没有参数加括号,一个参数可选择;
多个参数逗号分隔,

const numbers = [5,6,13,0,1,18,23];
//原函数
const double = numbers.map(function (number) {
    return number * 2;
})
console.log(double);
//输出结果
//[ 10, 12, 26, 0, 2, 36, 46 ]
//箭头函数     去掉function, 添加胖箭头
const double2 = numbers.map((number) => {
    return number * 2;
})
console.log(double2);
//输出结果
//[ 10, 12, 26, 0, 2, 36, 46 ]
//若只有一个参数,小括号能够不写(选择)
const double3 = numbers.map(number => {
    return number * 2;
})
console.log(double3);
//如有多个参数,则括号必须写;若没有参数,()须要保留
const double4 = numbers.map((number,index) => {
    return `${index}:${number * 2}`;  //模板字符串
})
console.log(double4);
Copy after login

2. Able to return implicitly

The displayed return is svg

const double3 = numbers.map(number => {
    return number * 2;  
    //return 返回内容;
})
Copy after login

The implicit return of arrow function is function

当你想简单返回一些东西的时候,以下:去掉return和大括号,把返回内容移到一行,较为简洁;
const double3 = numbers.map(number => number * 2);
Copy after login

Supplement: Arrow function is If an anonymous function needs to be called, it must be assigned to a variable, such as double3 above. Anonymous functions are useful when recursing and unbinding functions.

3. A more intuitive binding of scope and this (Does not bind this)

An object, we originally wrote this# in the function

##An object, we originally wrote this in the function

const Jelly = {
    name:'Jelly',
    hobbies:['Coding','Sleeping','Reading'],
    printHobbies:function () {
        this.hobbies.map(function (hobby) {
            console.log(`${this.name} loves ${hobby}`);
        })
    }
}
Jelly.printHobbies();
// undefined loves Coding
// undefined loves Sleeping
// undefined loves Reading
Copy after login

This means that the pointing of this.hobbies is correct, and the pointing of this.name is incorrect;

When an independent function is executed, this points to window

If we want to point correctly, our original approach is to set a variable to replace spa

//中心代码
printHobbies:function () {
    var self = this; // 设置变量替换
    this.hobbies.map(function (hobby) {
        console.log(`${self.name} loves ${hobby}`);
    })
}
Jelly.printHobbies();
// Jelly loves Coding
// Jelly loves Sleeping
// Jelly loves Reading
在ES6箭头函数中,咱们这样写code
//中心代码
printHobbies:function () {
   this.hobbies.map((hobby)=>{
       console.log(`${this.name} loves ${hobby}`);
   })
}
// Jelly loves Coding
// Jelly loves Sleeping
// Jelly loves Reading
Copy after login
This is because this is accessed in the arrow function In fact, it is inherited from this in its parent scope. The arrow function's own this does not exist. This is equivalent to the arrow function's this being determined when it is declared (lexical scope). The point of this It does not change when the method is called.

【Related recommendations:

javascript video tutorial, web front-end

The above is the detailed content of What are the advantages of es6 arrow functions?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Understand the pros and cons of Django, Flask, and FastAPI frameworks Understand the pros and cons of Django, Flask, and FastAPI frameworks Sep 28, 2023 pm 01:19 PM

To understand the pros and cons of Django, Flask, and FastAPI frameworks, specific code examples are required. Introduction: In the world of web development, choosing the right framework is crucial. Django, Flask, and FastAPI are three popular Python web frameworks, each with their own unique strengths and weaknesses. This article will dive into the pros and cons of these three frameworks and illustrate their differences with concrete code examples. 1. Django framework Django is a fully functional

Django Framework Pros and Cons: Everything You Need to Know Django Framework Pros and Cons: Everything You Need to Know Jan 19, 2024 am 09:09 AM

Django is a complete development framework that covers all aspects of the web development life cycle. Currently, this framework is one of the most popular web frameworks worldwide. If you plan to use Django to build your own web applications, then you need to understand the advantages and disadvantages of the Django framework. Here's everything you need to know, including specific code examples. Django advantages: 1. Rapid development-Djang can quickly develop web applications. It provides a rich library and internal

Is async for es6 or es7? Is async for es6 or es7? Jan 29, 2023 pm 05:36 PM

async is es7. async and await are new additions to ES7 and are solutions for asynchronous operations; async/await can be said to be syntactic sugar for co modules and generator functions, solving js asynchronous code with clearer semantics. As the name suggests, async means "asynchronous". Async is used to declare that a function is asynchronous; there is a strict rule between async and await. Both cannot be separated from each other, and await can only be written in async functions.

How to use PHP arrow functions to implement currying of functions How to use PHP arrow functions to implement currying of functions Sep 13, 2023 am 11:12 AM

How to use PHP arrow functions to implement currying of functions Currying (Currying) is a functional programming concept, which refers to the process of converting a multi-parameter function into a function sequence that only accepts a single parameter. In PHP, we can use arrow functions to implement currying of functions, making the code more concise and flexible. The so-called arrow function is a new anonymous function syntax introduced in PHP7.4. Its characteristic is that it can capture external variables and has only one expression as the function body.

Why does the mini program need to convert es6 to es5? Why does the mini program need to convert es6 to es5? Nov 21, 2022 pm 06:15 PM

For browser compatibility. As a new specification for JS, ES6 adds a lot of new syntax and API. However, modern browsers do not have high support for the new features of ES6, so ES6 code needs to be converted to ES5 code. In the WeChat web developer tools, babel is used by default to convert the developer's ES6 syntax code into ES5 code that is well supported by all three terminals, helping developers solve development problems caused by different environments; only in the project Just configure and check the "ES6 to ES5" option.

What does es6 temporary Zenless Zone Zero mean? What does es6 temporary Zenless Zone Zero mean? Jan 03, 2023 pm 03:56 PM

In es6, the temporary dead zone is a syntax error, which refers to the let and const commands that make the block form a closed scope. Within a code block, before a variable is declared using the let/const command, the variable is unavailable and belongs to the variable's "dead zone" before the variable is declared; this is syntactically called a "temporary dead zone". ES6 stipulates that variable promotion does not occur in temporary dead zones and let and const statements, mainly to reduce runtime errors and prevent the variable from being used before it is declared, resulting in unexpected behavior.

How to implement array deduplication in es5 and es6 How to implement array deduplication in es5 and es6 Jan 16, 2023 pm 05:09 PM

In es5, you can use the for statement and indexOf() function to achieve array deduplication. The syntax "for(i=0;i<array length;i++){a=newArr.indexOf(arr[i]);if(a== -1){...}}". In es6, you can use the spread operator, Array.from() and Set to remove duplication; you need to first convert the array into a Set object to remove duplication, and then use the spread operator or the Array.from() function to convert the Set object back to an array. Just group.

Recommend an Android browser - advantages and usage suggestions of UC Browser Recommend an Android browser - advantages and usage suggestions of UC Browser Jan 08, 2024 pm 04:49 PM

A browser is a piece of software that everyone uses frequently. In addition to the browsers that come with mobile phones, people will also download browsers that are more useful and suitable for them. When choosing a browser, people compare their merits to see which one is better to use. Today I will introduce the advantages of UC Browser, and recommend a useful browser for Android systems. Introduction to the functions of UC Browser Android version. Most users choose to use UC Browser, certainly because of its unique functions and advantages. . Next, the editor will give you a detailed introduction as a browser. Its main function is to browse web pages. It has a reading mode, which can read novels and articles without being affected. 3. UC Browser has a built-in network disk function. Pictures, videos and other content can be stored in the cloud 4. Android version u

See all articles