Home > Web Front-end > JS Tutorial > body text

Several ways to define functions in JS

青灯夜游
Release: 2020-10-20 17:21:22
forward
4356 people have browsed it

Several ways to define functions in JS

Do you know how many ways there are to create a function in JavaScript? The following article will introduce you to several different methods of defining functions in JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

1. Declaration function

function sum(a, b) { return a + b; }
Copy after login

2. Expression function

// 可以命名:
(function sum(a, b) { return a + b; });

// 也可匿名 (AVOID):
(function(a, b) { return a + b; });

// 也能分配给变量:
const sum = function sum(a, b) { return a + b; })
Copy after login

3. Arrow function

// 一般形式:
(a, b) => { return a + b };

// 单参数,一行返回:
name => name.split(' ')

// 多参数,一行返回:
(a, b) => a + b

// 单参数,带函数体
name => { return name.split(' '); }
Copy after login

4. Generator function

function *sum(a, b) { yield a + b; }
Copy after login

5. Asynchronous function

async function sum(a, b) { return await a + b; }
Copy after login

6. Constructor (AVOID)

new Function(‘a’, ‘b’, ‘return a + b;’);
Copy after login

7. Export function

// 默认导出
export default function(a, b) { return a + b; };

// 命名导出
export function sum(a, b) { return a + b; };
Copy after login

8. Object attribute function

// 一般形式:
const object = {
  sum: function(a, b) { return a + b; },
};

// 简写:
const object = {
  sum(a, b) { return a + b; },
};
Copy after login

9. Object dynamic property function

const functionName = "sum";
const object = {
  [functionName]: function(a, b) { return a + b; },
};
Copy after login

10. Object property Getter/Setter function

// 一般形式:
const object = {
  get answer { return 42; },
  set answer(value) { /* 一些操作value的代码 */ },
};

//  使用 defineProperty
const obj = {};
Object.defineProperty(obj, "answer", {
  get() { return 42; },
  set(value) { /* 一些操作value的代码 */ },
});
Copy after login

11. Getter/Setter functions of object dynamic properties

const functionName = "answer";
const object = {
  get [functionName]() { return 42; },
  set [functionName](value) { /* 一些操作value的代码 */ },
};
Copy after login

12. Class method functions

class Compute {
  // 一般形式:
  sum(a, b) { return a + b; }
}

class Compute {
  // 静态:
  static sum(a, b) { return a + b; };
}
Copy after login

13. Class attribute function

class Compute {
  // 一般形式:
  sum = function (a, b) { return a + b; };
}class Compute {
  // 静态:
  static sum = function(a, b) { return a + b; };
}
Copy after login

14. Class private function

class Compute {
  // 一般形式:
  #sum(a, b) {
    return a + b;
  }  // 静态:
  static #sum(a, b) {
    return a + b;
  }
}
Copy after login

Summary

If you combine some of these methods, there are even more possibilities. Do you know of any other methods? Please leave a message and tell me.

Related free learning recommendations: js video tutorial

The above is the detailed content of Several ways to define functions in JS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!