Advanced explanation of javascript functions

Advanced explanation of javascript functions

Function definition method

function fn(){}//named function var fun=function(){}//anonymous function// new fn=new Funcion("parameter 1","parameter 2","function body"), rarely used.
//All functions are instance objects of Function (functions are also objects)
var fn = new Funcion("a","b","console.log(a+b)")
console.log(fn instanceof Object) //true

Function call (6 types)

this points to the problem

1. Ordinary function: window

2. Object method: instance object obj1

3. Constructor: instance object. This in the prototype object also points to the instance object ldh

4. Bind event function: event caller button1

5. Timer: window

6. Execute function immediately: window

Change the this pointer inside the function: call(), apply(), bind(),

If we don't need to call some functions immediately, but want to change the this pointer inside the function, use bind

Strict Mode

Enable for the entire script or for a function: "use strict";

Strict model syntax specification:

1. Variables must be declared before use

2. We cannot delete declared variables at will

3. This in the function in the global scope under the strict model is undefined

4. The constructor does not add a new call, this points to undefined, and assigning a value to undefined will result in an error (it previously pointed to window, which is equivalent to adding properties to window)

5. The timer's this still points to window. Events, objects, or pointing to the caller.

6. Parameters cannot have the same name

7. Functions must be declared at the top level. The new version of JavaScript will introduce "block-level scope" (introduced in ES6). To keep pace with newer versions, it is not allowed to declare a function inside a non-function code block.

Higher-order functions

Definition: A higher-order function is a function that operates on other functions, either receiving functions as parameters (callback functions) or returning functions as output.

Closures

A closure is a function that has access to variables in the scope of another function. Simply put, a scope can access local variables inside another function.

The role of closures: extending the scope of variables

Closure Exercise:

It is known that binding events and timers are asynchronous operations and will not be executed immediately.

(function(i){...})(i) The function will be executed immediately, and the parameters will be passed to the parentheses at the end. The parentheses inside the function will receive the parameters again. An immediately executed function is also called a small closure, and all functions inside it can access its internal variables.

(1) Click to output the current index number (common in interviews)

(2) Delay three seconds to output the content in <li>

(3)

Thinking about closure:

Recursion: A function that calls itself needs an end condition

Deep copy and shallow copy:

1. Shallow copy: only the top layer is copied, and the addresses of the deep objects are only copied, so changes to the original deep data will cause changes to the copied deep data

Object.assign(objNew,objOld)

2. Deep copy: copy all deep data values ​​to the new object. Data modifications of the new and old objects do not affect each other.

You may also be interested in:
  • Front-end advanced teaching you to use javascript storage function
  • JS array advanced examples [several array function usages]
  • Advanced JS function inheritance usage example analysis
  • Advanced JS function prototy usage example analysis
  • Advanced usage tips for split and join functions in JavaScript

<<:  Teach you how to build Redis cluster mode and sentinel mode with docker in 5 minutes

>>:  CSS element hiding principle and display:none and visibility:hidden

Recommend

mysql5.7.21 utf8 encoding problem and solution in Mac environment

1. Goal: Change the value of character_set_server...

Install Kafka in Linux

Table of contents 1.1 Java environment as a prere...

50 Beautiful FLASH Website Design Examples

Flash enabled designers and developers to deliver...

How to write the style of CSS3 Tianzi grid list

In many projects, it is necessary to implement th...

Implementation of CSS heart-shaped loading animation source code

Without further ado, let me show you the code. Th...

Overview of the Differences between Linux TTY/PTS

When we type a letter on the keyboard, how is it ...

JavaScript Closures Explained

Table of contents 1. What is a closure? 2. The ro...

Beginners learn some HTML tags (2)

Beginners can learn HTML by understanding some HT...

Nginx prohibits direct access via IP and redirects to a custom 500 page

Directly to the configuration file server { liste...

Screen command and usage in Linux

Screen Introduction Screen is a free software dev...

Detailed explanation of CocosCreator optimization DrawCall

Table of contents Preface What is DrawCall How do...

About if contains comma expression in JavaScript

Sometimes you will see English commas ",&quo...