Function definition methodfunction 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 problem1. 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 ModeEnable 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 functionsDefinition: A higher-order function is a function that operates on other functions, either receiving functions as parameters (callback functions) or returning functions as output. ClosuresA 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 conditionDeep 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:
|
<<: 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
1. Goal: Change the value of character_set_server...
Table of contents 1.1 Java environment as a prere...
Flash enabled designers and developers to deliver...
Introduction to the polling algorithm Many people...
In many projects, it is necessary to implement th...
Without further ado, let me show you the code. Th...
When we type a letter on the keyboard, how is it ...
When the token expires, refresh the page. If the ...
Table of contents 1. What is a closure? 2. The ro...
1. Download and install VirtualBox software First...
Beginners can learn HTML by understanding some HT...
Directly to the configuration file server { liste...
Screen Introduction Screen is a free software dev...
Table of contents Preface What is DrawCall How do...
Sometimes you will see English commas ",&quo...