1. Overview The verification code is as follows: var f = function () { console.log('this is f function'); } // A function is also an object console.log(f instanceof Object); // true // Function is an object of type Functionconsole.log(f instanceof Function); // true 1.1 Creating a function using the Function constructor The grammatical structure is as follows: var functionName = new Function ([arg1[, arg2[, ...argN]],] functionBody) Where The sample code is as follows: // Function without parameters var fun = new Function('console.log("This is a function")') fun() // This is a function // A function with one parameter var fun = new Function('a', 'console.log("This function takes one parameter: " + a)') fun(100) // This function takes one parameter: 100 // Function with two parameters var fun = new Function( 'a, b', 'console.log("This is a function with two parameters, " + a + " and " + b);', ) fun(100, 200) // This is a function with two parameters, 100 and 200 In actual development, we generally do not use this method to create functions because it is not readable at all. 1.2Function and Object
The verification code is as follows: console.log(Function instanceof Function) //true console.log(Function instanceof Object) //true console.log(Object instanceof Object) //true console.log(Object instanceof Function) //true 2. Constructor 2.1 Custom otherwise function A constructor, also known as a constructor or object template, is a method in an object that is called when it is instantiated. In The syntax for creating a constructor is as follows: function Person(){ this.property name = property value; this.method name = function() { Method Body} var person = new Person(); Here, The following code shows how to create a constructor and how to instantiate a class through the constructor: // Custom constructor -> Function: Create object function Person(name, age, sex) { this.name = name this.age = age this.sex = sex this.print = function () { console.log(name + 'this year' + age + 'age and gender' + sex) } } // Create a bowl of sweets var t = new Person('a bowl of sweets', 18, 'female') hong.print() // Yiwantian is 18 years old and female // Create Yiwanzhou var z = new Person('Yiwanzhou', 20, 'male') dong.print() //A bowl of porridge, 20 years old, male 2.2 Constructor property of an object All objects inherit a constructor property from their prototype: It is important to note that the value of this property is a reference to the function itself, not a string containing the function name. The sample code is as follows: // Create Yiwan Zhou var z = new Person('Yiwan Zhou', 18, 'Male') // Check if it is the object of Person constructor console.log(z.constructor === Person) 2.3 Constructors and functionsLet's look at a piece of code first function Hero() { // Use as a function var v = 100 // Local variable // Use as a constructor this.set = function (value) { v = value } this.get = function () { return v } } In this code, first we define a function, which is also a constructor, and of course it is still an object. Since it has three meanings, there are three operations, as shown below
The sample code is as follows: // Call Hero() directly // Create an object through the constructor var hero = new Hero() // Treat it as an object and add properties and methods Hero.n = 'A bowl of Zhou' console.log(Hero.n) // A bowl of Zhou 3. Properties and methods of Function objects The global 3.1length attributeThe length attribute indicates the number of formal parameters of the function. The sample code is as follows: // Define two empty functions function fun(a, b, c, d) {} function fn() {} // Test the length property console.log(fun.length) // 4 console.log(fn.length) // 0
The syntax format is as follows: func.apply(thisArg, [argsArray]) The parameters are explained as follows:
The return value is the result of calling the function with the specified this value and arguments. The following code shows the usage of the apply() method: // define a function function fn(a) { console.log('this is ' + a) } fn.apply(null, ['function']) // this is function // The above call is equivalent to the following method fn('function') // this is function 3.2call() method The syntax and function of this method are similar to the The following code shows the usage of the call() method: function fn(a) { console.log('this is ' + a) } fn.call(null, 'function') // this is function // The above call is equivalent to the following method fn('function') // this is function
The parameters are explained as follows: function.bind(thisArg[, arg1[, arg2[, ...]]]) parameter: The return value is a copy of the original function with the specified **this** value and initial parameters. The following code shows the bind() method: // Define a function var fun = function (a, b) { console.log('The value of the first parameter is:' + a + 'The value of the second parameter is:' + b) } // Call fun() fun(10, 20) // The value of the first parameter is: 10 The value of the second parameter is: 20 // Create a bound function var fn = fun.bind(null, 100, 200) // Function with default parameter values // Call the newly created function without writing actual parameters fn() // The value of the first parameter is: 100 The value of the second parameter is: 200 4. Arguments Object
Its parameters can also be redefined. The object also provides two properties:
The following code shows the usage of this object. The code is as follows: /* * The arguments object is a special object that lives in the function body. * The arguments object is an array-like object * The arguments object corresponds to the actual parameters passed to the function */ // Define a function var fun = function () { console.log(arguments) // arguments.callee points to the currently executing function to which the arguments belong. //If you add a bracket to this property, it means calling. Because arguments.callee === fun evaluates to true console.log(arguments.callee) // arguments.length The number of arguments passed to the function. console.log(arguments.length) } fun(1, 2, 3, 4, 5) The code execution results are as follows: [Arguments] { '0': 1, '1': 2, '2': 3, '3': 4, '4': 5 } [Function: fun] 5 We can use the arguments.length property to determine the number of passed parameters to complete the function overloading. The sample code is as follows: // Overload of simulation function function add() { // Record the number of parameters var len = arguments.length // Use the switch case statement to determine the number of parameters passed in to simulate the overloaded function switch (len) { case 2: return arguments[0] + arguments[1] break case 3: return arguments[0] + arguments[1] + arguments[2] break case 4: return arguments[0] + arguments[1] + arguments[2] + arguments[3] break default: break } } console.log(add(1, 2)) // 3 console.log(add(1, 2, 3)) // 6 console.log(add(1, 2, 3, 4)) // 10 5. SummaryThis article introduces how to create a constructor, how to instantiate an object through a constructor, and what methods and properties the Function object provides. How to use it, and finally introduce an Arguments object. This is the end of this article about JS Function and Constructor. For more relevant JS function and constructor content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Two ways to build Docker images
>>: Examples of using HTML list tags dl, ul, ol
1: Download MySql Official website download addre...
Recently, when I installed MySQL in Docker, I fou...
This article shares the specific code of Vue+expr...
Preface: When you execute a SQL statement in MySQ...
There are many purposes for exporting MySQL data,...
This article mainly introduces the sql script fun...
I knew before that to synchronously obtain the re...
First of all, we need to understand that GB2312, ...
1. Table structure 2. Table data 3. The query tea...
Use wget command to download the entire subdirect...
Table of contents Preface 1. Introduction to one-...
Today, let's introduce several common text pr...
At first I thought it was a speed issue, so I late...
This article shares the specific code of JavaScri...
Table of contents Implementing an irregular form ...