


1. Simple form of encapsulation call
var userName = function( ) { return "jeff wong" } ();
alert(userName);
The above code is really simple, we can gradually break it down into the following writing:
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)
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:
alert(b()); //undefined
alert(a()); //Script error prompts "Missing function"
3. New function can make a difference (lowercase function)
(1), simple empty function
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:
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:
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:
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:
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:
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

去掉重复并排序的方法: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

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

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
