Home Web Front-end JS Tutorial JavaScript function overloading solution sharing_Basic knowledge

JavaScript function overloading solution sharing_Basic knowledge

May 16, 2016 pm 04:59 PM
function overloading

The function definition of JS can specify formal parameter names. More or less, we would think that js can at least support method overloading with different number of parameters. However, unfortunately this is just an illusion. All parameters of js are in arguments. Passed, this parameter is similar to an array. When the function is called, all actual parameters are stored in this data structure. The formal parameters specified when we define the function are actually defined for the data in this data structure. A quick way to access. In other words, all functions in JS support unlimited parameters, and the data type is a weak type. So there is really no method difference between JS functions except their names?

There is always a way. We can use special object arguments in JavaScript to simulate function overloading. Use it to determine the number or type of parameters passed in to distinguish overloading.

1. Overload according to the number of parameters

js can use the arguments.length attribute to determine the number of incoming parameters;

Copy code The code is as follows:


2.根据参数类型重载

Three ways to determine the variable type:
1. Use the typeof statement to determine the variable type. The typeof statement returns the string corresponding to the type.
2. Use the instanceof statement to determine the variable type. The instanceof statement returns true/false.
3. Use the constructor attribute to determine the variable type. This attribute returns the constructor reference used to construct the variable.
Comparison table: It can be seen that typeof cannot accurately determine the specific type, so we use constructor to judge.

typeof string number object function boolean object object
constructor String Number Object Function Boolean Array User Define

Copy code The code is as follows:



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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
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 尊渡假赌尊渡假赌尊渡假赌

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 distinguish function overloading and rewriting in C++ How to distinguish function overloading and rewriting in C++ Apr 19, 2024 pm 04:21 PM

Function overloading allows functions with the same name but different signatures in a class, while function overriding occurs in a derived class when it overrides a function with the same signature in the base class, providing different behavior.

Overloading and rewriting of PHP functions Overloading and rewriting of PHP functions Apr 26, 2024 pm 05:12 PM

Function overloading and rewriting are supported in PHP to create flexible and reusable code. Function overloading: allows the creation of functions with the same name but different parameters, and calls the most appropriate function based on parameter matching. Function rewriting: Allow subclasses to define functions with the same name and override parent class methods. When subclass methods are called, they will override parent class methods.

How to implement function overloading in golang? How to implement function overloading in golang? Apr 29, 2024 pm 05:21 PM

The Go language does not support traditional function overloading, but similar effects can be achieved through the following methods: using named functions: creating unique names for functions with different parameters or return types; using generics (Go1.18 and above): creating unique names for different types of parameters A single version of the function.

How to handle ambiguous calls in C++ function overloading? How to handle ambiguous calls in C++ function overloading? Apr 13, 2024 pm 09:18 PM

Ambiguous calls occur when the compiler cannot determine which overloaded function to call. Solutions include providing a unique function signature (parameter type and number) for each overloaded function. Use explicit type conversion to force the correct function to be called if an overloaded function's parameter types are more suitable for the parameters of a given call. If the compiler cannot resolve an ambiguous call, an error message will be generated and the function overloading will need to be rechecked and modified.

Best practices for C++ function overloading Best practices for C++ function overloading Apr 20, 2024 am 10:48 AM

Best practices for C++ function overloading: 1. Use clear and meaningful names; 2. Avoid too many overloads; 3. Consider default parameters; 4. Keep the parameter order consistent; 5. Use SFINAE.

Why is there no function overloading in golang? Why is there no function overloading in golang? Apr 30, 2024 am 10:54 AM

Function overloading is not allowed in the Go language for the following reasons: Simplify the compiler implementation Improve code readability and avoid name conflicts In Go, you can use variable parameter lists or interfaces to achieve behavior similar to function overloading.

Does C++ function overloading apply to constructors and destructors? Does C++ function overloading apply to constructors and destructors? Apr 14, 2024 am 09:03 AM

C++ constructors support overloading, but destructors do not. Constructors can have different parameter lists, while destructors can only have an empty parameter list because it is automatically called when destroying a class instance without input parameters.

How does the compiler differentiate between parameters with the same style but different types in Java's function overloading mechanism? How does the compiler differentiate between parameters with the same style but different types in Java's function overloading mechanism? Apr 25, 2024 am 10:03 AM

The way the compiler differentiates between overloaded functions: by their signature, which is the type of each function parameter. Even if the function name and number of parameters are the same, the compiler can tell them apart as long as the parameter types are different.

See all articles