search
HomeWeb Front-endJS TutorialJavaScript study notes (4) function function part_basic knowledge

A function is an event-driven or reusable block of code that executes when it is called.
Jscript supports two types of functions: one is the internal function of the language (such as eval()), and the other is created by yourself.

A variable declared inside a JavaScript function (using var) is a local variable, so it can only be accessed inside the function. (The scope of this variable is local).

You can use local variables with the same name in different functions because only the function in which the variable is declared will recognize the variable.

How to call functions

1. Ordinary call: functionName (actual parameters...)

2. Call through a variable pointing to the function:

var myVar = function name;

myVar(actual parameter...);

Function that returns a function

 1. When a function has no clear return value, the returned value is "undefined".

 2. When a function has a return value, whatever the return value is is returned.

We can return a function to the place where it was called by using the return statement.

When using the return statement, the function stops execution and returns the specified value.

Functions usually return a unique value, so this value may also be another function:

Copy code The code is as follows:


Here, we just assign the return value to a variable and then call it like a normal function:

Copy code The code is as follows:


If you want the returned function to be executed immediately, you can also use box()() to execute this code.

The parameters of all ECMAScript functions are passed by value, which means that the parameters are not passed by reference.

PS: If there is pass by reference, then the variable in the function will be a global variable and can also be accessed externally.

(1) Value type: numeric value, Boolean value, null, undefined.
(2) Reference type: object, array, function.

Reference type value: refers to those objects stored in heap memory, which means that what is saved in the variable is actually just a pointer. This pointer executes another location in the memory, and the object is saved at that location;
Create anonymous function

Copy code The code is as follows:

function(){
return ‘Lee’; //A separate anonymous function cannot be run. Even if it can be run, it cannot be called because it has no name
}

This kind of anonymous function has many uses in JQuery. Declare an anonymous function directly and use it immediately. The advantage of using anonymous functions is that you don't have to define a function that is used once and then don't use it, and it also avoids the problem of naming conflicts. There is no concept of namespace in js, so it is easy for function names to conflict. In the event of a naming conflict, the last declared one shall prevail.

Execute an anonymous function via self-execution:

Copy code The code is as follows:

//Execute anonymous function by self-execution


Assign the return value of the anonymous function's self-execution to a variable:

Copy code The code is as follows:

//Assign the return value of the anonymous function's self-execution to the variable



Passing parameters to self-executing anonymous function:

Copy code The code is as follows:
//Pass parameters of self-executing anonymous function



javascript creates dynamic function:

JavaScript supports the creation of dynamic functions. Dynamic functions must be defined using Function objects (Function is an object in JavaScript and is fixed. It is stipulated that the "F" of the Function object must be capitalized. When it is a function, we know It is a keyword used when defining a function: function funName(x, y). When it is Function (when F is capitalized), we know it is an object in JavaScript)

The basic format for creating a dynamic function: var variable name = new Function("Parameter 1", "Parameter 2", "Parameter n", "Execution statement");

Look at the following piece of code:





square is a dynamically created function. Each part of the content in the brackets after the Function object must be in string form, that is to say, it must be enclosed in quotation marks ("" or '')

This code:

var square = new Function ("x","y","var sum ; sum = x y;return sum;");

and the following code:


function square (x,y){
        var sum;
          sum = x y;
           return sum;
}


are exactly the same, except that one is a dynamic function and the other is a static function. Why should we divide the code into small pieces of code? , the advantage of dividing a string into several independent strings is that we can change the function of the function at any time by modifying some of the strings.


Callback function

Callback is the calling process of a function. So let’s start by understanding this calling process. Function a has one parameter, which is function b. When function a is executed, function b is executed. Then this process is called callback.

In fact, Chinese is also easy to understand: callback, callback, means call back. Finish function a in advance and call function b later.

One thing must be clear here: function b is passed to function a in the form of a parameter, then function b is called a callback function.

Most of the effect functions in jquery involve callback functions. jquery effect function

For example:


Copy code The code is as follows:


The callback function here can be replaced by an example:

Copy code The code is as follows:


Callback actually means that after a function is executed, the function currently executed is the so-called callback function. How about it? It’s easy to understand...

The difference between methods and functions

Copy code The code is as follows:

var arr = [1,2,3,4,5]
var a =12; // Variable: free
arr.a= 5; //Attribute: Belongs to an object
function show() //Function: Free
{
alert(‘a’);
}
arr.fn = function() //Method: Belongs to an object
{
alert(‘b’);
}

In fact, methods are functions, but methods are objects to which they belong.

As we all know, binding a function to the click event
Syntax:

$(selector).click(function)
Parameter Description
function is optional. Specifies a function to run when a click event occurs.
This form is often seen in jquery. It uses function as a parameter of the method and adds an event handling function to the method.

js global function

Global functions are not the same concept as the properties or methods of built-in objects. Global functions do not belong to any built-in object.
JavaScript contains the following 7 global functions, which are used to complete some common functions:

escape( ), eval( ), isFinite( ), isNaN( ), parseFloat( ),
parseInt( ), unescape( ).
Several functions of functions

Used as a class constructor

Copy code The code is as follows:

function class(){}
class.prototype={};
var item=new class();

Use as closure

Copy code The code is as follows:

(function(){
//Independent scope
})();

Call as constructor

The so-called constructor function is to generate a new object through this function.

Copy code The code is as follows:


Objects can be created and initialized using the new operator in conjunction with predefined constructors like Object(), Date(), and Function(). A powerful feature of object-oriented programming is the ability to define custom constructors to create custom objects for use in scripts. Created a custom constructor so that objects with defined properties can be created. Below is an example of a custom function (note the use of the this keyword).

Copy code The code is as follows:

function Circle (xPoint, yPoint, radius) {
This.x = xPoint; // The x coordinate of the center of the circle.
This.y = yPoint; // The y coordinate of the center of the circle.
This.r = radius; // The radius of the circle.
}

When calling the Circle constructor, give the value of the center point and the radius of the circle (all these elements are required to fully define a unique circle object). At the end of the day the Circle object contains three properties. Here's how to instantiate a Circle object.

var aCircle = new Circle(5, 11, 99);
The advantage of using a constructor function is that it can receive some parameters when creating an object.

Copy code The code is as follows:



By convention, we should capitalize the first letter of a constructor function to distinguish it from ordinary functions.

The following two forms of defining functions are equivalent.

Copy code The code is as follows:


A variable test is clearly defined here, and its initial value is assigned to a function entity

Copy code The code is as follows:


Look at the following defined function form:

Copy code The code is as follows:


Obviously, the first function didn’t work. It’s strange, isn’t it? We know that the JavaScript parsing engine does not execute the code line by line, but executes the code section by section. In the analysis and execution of the same program, the defined function statements will be executed first, so the code logic of the first definition has been overwritten by the second one, so when the same function is called twice, only the second one will be executed.

function as value

Function is not only a syntax in js, but also a value. That is to say, the function can be assigned to a variable, stored in a property of an object or an element of an array, and passed as a parameter to another function.
The name of the function is actually invisible, it is just the name of the variable, which refers to the function object

Copy code The code is as follows:


In addition to assigning functions to variables, you can also assign functions to attributes of objects. When a function is called as an attribute of an object, the function is called a method

Copy code The code is as follows:


prototype attribute

Each function contains the prototype attribute, which points to a reference to an object. This object is called the prototype object.
For details, see: JavaScript study notes (5) Prototype and prototype chain

Higher-order functions

The higher-order function here is not the higher-order function in higher mathematics. The so-called higher-order function is a function that operates on a function. It receives one or more functions as parameters and returns a new function

Statement
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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version