Home Web Front-end JS Tutorial Analyze several simple and interesting pieces of code through anonymous functions of javascript_javascript skills

Analyze several simple and interesting pieces of code through anonymous functions of javascript_javascript skills

May 16, 2016 pm 06:24 PM
javascript anonymous function

1. Simple form of encapsulation call

Copy code The code is as follows:

var userName = function( ) { return "jeff wong" } ();
alert(userName);


The above code is really simple, we can gradually break it down into the following writing:
Copy code The code is as follows:

var anonymousFunc = function() { return "jeff wong" }; // Anonymous function
var name = anonymousFunc(); //Execute this function to return the name of the person
alert(name);


2. New is the form of Function (uppercase Function)
Copy code The code is as follows:

var a = new Object();
var b = new Function();
//alert(typeof (a)); //object
//alert(typeof (b)); //function
alert(a); //[ object Object]
alert(b); //Anonymous function
//alert(a == b); //false
//alert(a === b); //false



As you can see, we new an Object, the variable a pops up is [object Object], and new a Function (note that it is capitalized Function), b is in When it pops up, an anonymous function is generated. Since b is an anonymous function, the function can of course be executed. We can continue to try the following code to verify our guess:
Copy code The code is as follows:

alert(b()); //undefined
alert(a()); //Script error prompts "Missing function"



3. New function can make a difference (lowercase function)
(1), simple empty function
Copy code The code is as follows:

var func = new function() { };
alert(typeof (func)); //object
alert(func); //[object Object]
//alert(func()); //Script error func is not a function



In fact, the above code is equivalent to the following Writing method:
Copy code The code is as follows:

function anonymousClass() { } //Anonymous Class
var instance = new anonymousClass();
alert(typeof (instance));//object
alert(instance); //[object Object]

[code]

(2). The function has a return value, which is not difficult to understand.
[code]
var func = new function() { return "jeff wong" };
alert( typeof (func));
alert(func);
//alert(func()); //Script error missing function



In fact, the above The code is equivalent to the following writing:
Copy the code The code is as follows:

function anonymousClass () { return "jeff wong"; } //Anonymous class
var instance = new anonymousClass();
alert(typeof (instance));//object
alert(instance); //[ object Object]


(3), the function still has a return value, the writing method is slightly different

Please pay attention to the difference between the following code and (2) , because what we want to focus on next is the little bit of different writing forms:
Copy code The code is as follows:

var func = new function() { return new String("jeff wong"); };
alert(typeof (func)); //object expected
alert(func); //Here?!
//alert(func()); //Script error missing function



The equivalent form of the above code is still simple:
Copy code The code is as follows:

function anonymousClass() { return new String("jeff wong"); }
var instance = new anonymousClass();
alert(typeof (instance));
alert(instance);


Have you run it and seen the results? That's right, in the third way of writing, when we pop up func or instance, we unexpectedly get a string "jeff wong". Comparing the codes in (2) and (3) carefully, except for the slightly different writing method of return, the two codes are almost identical, so we infer that there is no doubt that it is the form of new String that makes our function generate Unexpected effect. Why is this happening?

It turns out that in JavaScript, as long as the constructor after the new expression returns (return) a primitive type (when there is no return, it actually returns the primitive type undefined, such as (1)), such as (2) Writing method, then the anonymous object created by new is returned; and if the constructor after the new expression returns a reference object, such as an object (Object), a function (function), an array (Array), etc., then the returned reference object will be Overwrite the anonymous object created by new. Now let’s analyze the writing in (3). Since new String will construct a string reference object, it covers the anonymous object created by new, and the reference value pointed to by new String is “jeff wong”, so the pop-up is inevitable. Is the value assigned by the current new String.

Finally, leave a question to think about. Let’s see what the following code returns:

Copy code The code is as follows:

var func = new function() { var str = new String("jeff wong"); return str; };//Write it another way
// alert(typeof (func)); //object is expected
alert(func); //Guess what the result should be here?

Author: Jeff Wong
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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks 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)

Usage and characteristics of C++ anonymous functions Usage and characteristics of C++ anonymous functions Apr 19, 2024 am 09:03 AM

An anonymous function, also known as a lambda expression, is a function that does not specify a name and is used for one-time use or to pass a function pointer. Features include: anonymity, one-time use, closures, return type inference. In practice, it is often used for sorting or other one-time function calls.

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 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

Python Lambda expressions: abbreviated, concise, powerful Python Lambda expressions: abbreviated, concise, powerful Feb 19, 2024 pm 08:10 PM

pythonLambda expressions are a powerful and flexible tool for creating concise, readable, and easy-to-use code. They are great for quickly creating anonymous functions that can be passed as arguments to other functions or stored in variables. The basic syntax of a Lambda expression is as follows: lambdaarguments:expression For example, the following Lambda expression adds two numbers: lambdax,y:x+y This Lambda expression can be passed to another function as an argument as follows: defsum( x,y):returnx+yresult=sum(lambdax,y:x+y,1,2)In this example

Can Golang anonymous functions return multiple values? Can Golang anonymous functions return multiple values? Apr 13, 2024 pm 04:09 PM

Yes, anonymous functions in Go language can return multiple values. Syntax: func(arg1,arg2,...,argN)(ret1,ret2,...,retM){//Function body}. Usage: Use the := operator to receive the return value; use the return keyword to return multiple values.

Python Lambda Expressions: Making Programming Easier Python Lambda Expressions: Making Programming Easier Feb 19, 2024 pm 09:54 PM

A python Lambda expression is a small anonymous function that stores an expression in a variable and returns its value. Lambda expressions are often used to perform simple tasks that can be accomplished by writing a separate function, but Lambda expressions can make the code more concise and readable. The syntax of a Lambda expression is as follows: lambdaarguments: expressionarguments is the parameter list received by the Lambda expression, and expression is the body of the Lambda expression, which contains the code that needs to be executed. For example, the following Lambda expression adds two numbers and returns their sum: lambdax,

Python Lambda expressions: Uncovering the power of anonymous functions Python Lambda expressions: Uncovering the power of anonymous functions Feb 24, 2024 am 09:01 AM

Lambda expression in python is another syntax form of anonymous function. It is a small anonymous function that can be defined anywhere in the program. A lambda expression consists of a parameter list and an expression, which can be any valid Python expression. The syntax of a Lambda expression is as follows: lambdaargument_list:expression. For example, the following Lambda expression returns the sum of two numbers: lambdax,y:x+y. This Lambda expression can be passed to other functions, such as the map() function: numbers=[ 1,2,3,4,5]result=map(lambda

How are anonymous functions implemented in golang functions? How are anonymous functions implemented in golang functions? Jun 03, 2024 pm 07:09 PM

Anonymous functions within functions in Go allow the creation of one-off functions within a function body without explicitly declaring them. They are defined by using the func keyword and omitting the function name. Implemented through closures, which contain the function body code and references to all local variables in the function containing the anonymous function. For example, using an anonymous function in the sort.Slice function sorts a slice of integers.

See all articles