This article briefly analyzes the important knowledge points related to functions in JS. Friends who are interested in this can refer to it.
You must know that in js, the reference type is a data structure, including 5 reference types, namely Object, data, Array, re. Please enter the code gExp, Function. Today we will talk about the data structure of Function.
In js, functions are actually objects, and each function is an instance of the Function type. Like other reference types, they have properties and methods.
1. There are several ways to define functions
1) Function declaration syntax definition
function sum(num1,num2){ return num1+num2; }
2) Function expression
Note that there is a semicolon after the function expression;
var sum=function(num1,num2){ return num1+num2; }
Use Function constructor
Using the constructor can receive any number of parameters, but the last parameter is always regarded as the function body, and The previous parameters enumerate the parameters
var sum=new Function("num1","num2","return num1+num2")
Of course, the third method is not friendly and is not recommended.
The function name is just a pointer to the function, so the function name is no different from other variables containing object pointers. That is to say, a function may have multiple names.
What is the difference between function declaration and function expression here?
When the parser loads data into the execution environment, it treats function declarations and function expressions differently. The parser first reads the function declaration and makes the function declaration code callable before any code. This is what we usually call function declaration hoisting. Function expressions are different. They must wait until the function parser executes the code block where they are located before they are actually executed. Compare the following two examples
console.log(sum(10,10)); function sum(n1,n2){ return n1+n2; } 以上代码会正常执行 再看! console.log(sum(10,10)); var sum=function(n1,n2){ return n1+n2; } 以上执行器就会报错!
2. The function is not overloaded
If two functions with the same name are declared, the result is that the latter function overwrites the previous function.
function sun(a){ return a+100; } function sun(a){ return a+200; } var result=sum(2)//202
3. The internal attributes of the function
Including this, arguments
The details will not be described again
4 .Function attributes and methods
The function has two attributes, length and prototype
length indicates the number of named parameters the function hopes to receive.
function a(name){ //todo } function b(name,age){ //todo } function c(){ //todo } a.length //1 b.length //2 c.length //0
The prototype attribute is very important for reference types and will be explained specifically, so I won’t go into details here.
Each function contains two non-inherited methods apply and call
The purpose of these two methods is to call the function in a specific scope. In fact, it is to set this in the function body. refers to the value.
first. The apply() method receives two parameters, one is the scope in which the function runs, and the other is the parameter array. The second parameter can be an instance of the array or arguments.
function sum(num1,num2){ return num1+num2; } function test1(a,b){ return sum.apply(this,arguments); } function test2(c,d){ return sum.apply(this.[c,d]); } console.log(test1(1,1)) //2 console.log(test2(1,1)) //2
call method and apply method Not much difference. The difference is that the second parameter of the call method must be passed one by one.
The biggest advantage of using call and apply to expand the scope is that the object is not coupled to any method
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to encapsulate reusable components in vue
How to use slots to implement slots in Vue Distribution content
How to get the value in select in vue.js (detailed tutorial)
The above is the detailed content of Detailed explanation on js function related content. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
