Home Web Front-end JS Tutorial JavaScript study notes (4) function function part_basic knowledge

JavaScript study notes (4) function function part_basic knowledge

May 16, 2016 pm 04:34 PM
function javascript study notes

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 of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

See all articles