This article brings you a detailed analysis of Functions and ES6 arrow functions in js. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Everything in JavaScript happens within functions.
A function is a block of code that can be defined once and run at any time.
The function can optionally accept parameters and return a value.
Function in JavaScript is an object, a special kind of object: function object.
Also, functions are called first-class functions because they can be assigned to a value, they can be passed as arguments and used as return values.
Let’s start with the “old”, pre-ES6/ES2015 syntax. This is a function declaration:
function dosomething(foo) { // do something }
(Now, in the ES6/ES2015 world, this is called a regular function)
Functions can be assigned to variables (this is called a function expression):
const dosomething = function(foo) { // do something }
Named function expressions are similar, but work better in stack call traces, which are useful in case of errors - it saves the name of the function:
const dosomething = function dosomething(foo) { // do something }
ES6/ES2015 introduced arrow functions , especially suitable for use as parameters or callback functions when using inline functions:
const dosomething = foo => { //do something }
Arrow functions are very different from the other function definitions above, as we will explain later.
A function can have one or more parameters.
const dosomething = () => { //do something } const dosomethingElse = foo => { //do something } const dosomethingElseAgain = (foo, bar) => { //do something }
Starting in ES6/ES2015, functions can have default values for parameters:
const dosomething = (foo = 1, bar = 'hey') => { //do something }
This allows you to call a function without filling in all parameters:
dosomething(3) dosomething()
ES2018 Trailing commas for parameters have been introduced, this feature helps reduce errors caused by missing commas when moving parameters (for example, moving the last one in the middle):
const dosomething = (foo = 1, bar = 'hey') => { //do something } dosomething(2, 'ho!')
You can wrap all parameters in an array , and use the spread operator when calling the function:
const dosomething = (foo = 1, bar = 'hey') => { //do something } const args = [2, 'ho!'] dosomething(...args)
When using many parameters, remembering them can be difficult. Objects can be used here, and destructuring preserves parameter names:
const dosomething = ({ foo = 1, bar = 'hey' }) => { //do something console.log(foo) // 2 console.log(bar) // 'ho!' } const args = { foo: 2, bar: 'ho!' } dosomething(args)
Every function returns a value, which is "undefined" by default.
Any function terminates at the end of its line of code, or when the execution flow finds the return keyword.
When JavaScript encounters this keyword, it exits function execution and returns control to its caller.
If you pass a value, that value will be returned as the result of the function:
const dosomething = () => { return 'test' } const result = dosomething() // result === 'test'
You can only return a value.
To _simulate_ returning multiple values, you can return an object literal or array and use the destructuring assignment function when called.
Use array:
Use object:
You can define functions in other functions:
const dosomething = () => { const dosomethingelse = () => {} dosomethingelse() return 'test' }
The scope of nested functions is external functions and cannot be called from the outside.
When used as an object property, a function is called a method:
const car = { brand: 'Ford', model: 'Fiesta', start: function() { console.log(Started) } } car.start()
When an arrow function is the same as a regular function There is an important behavior when used as an object method. Consider this example:
const car = { brand: 'Ford', model: 'Fiesta', start: function() { console.log(Started ${this.brand} ${this.model}) }, stop: () => { console.log(Stopped ${this.brand} ${this.model}) } }
stop() method does not work as you expect.
This is because the processing of this is different in the two function declaration styles. This in the arrow function refers to the enclosing function context, in this case the window object
this, use function() to refer to the host object
This means that arrow functions are not suitable for use with object methods and constructors (the arrow function constructor will actually raise a TypeError
when called).
IIFE is a function that is executed immediately after declaration:
;(function dosomething() { console.log('executed') })()
You can assign the result to a variable:
const something = (function dosomething() { return 'something' })()
They are very convenient because you don't need to call the function separately after defining it.
The JavaScript before executing the code will reorder it according to certain rules.
will move the function to the top of its scope. This is why the following example does not throw an error;
dosomething() function dosomething() { console.log('did something') }
Internally, JavaScript moves the function before calling it, and all the functions found in the same scope Other functions:
function dosomething() { console.log('did something') } dosomething()
现在,如果你使用命名函数表达式,因为你正在使用变量,会发生不同的事情。变量声明被提升,但不是值,因此不是函数。
dosomething() const dosomething = function dosomething() { console.log('did something') }
不会工作:
这是因为内部发生的事情是:
const dosomething dosomething() dosomething = function dosomething() { console.log('did something') }
“let”声明也是如此。var声明也不起作用,但是报的不是同样的错误:
这是因为var
声明被提升并用undefined
作为值初始化,而const
和let
被提升但未初始化。
相关推荐:
The above is the detailed content of Detailed analysis of Functions and ES6 arrow functions in js. For more information, please follow other related articles on the PHP Chinese website!