search
HomeWeb Front-endJS TutorialECMAScript6 function default parameters_javascript tips

Every new feature added during the language update is extracted from the needs of millions of developers. Standard adoption can reduce the pain of programmers and bring convenience.

We often write like this

function calc(x, y) {
  x = x || 0;
  y = y || 0;
  // to do with x, y
  // return x/y
}

To put it simply, x and y provide a default value of 0. When not passed, x and y are calculated with the value 0. Once passed, the actual value will be used for calculation.

Another example is defining an ajax

function ajax(url, async, dataType) {
  async = async !== false
  dataType = dataType || 'JSON'
  // ...
}

A simple ajax function encapsulated with native JS. The url is required, async and dataType are optional. If not filled in, the default is to request and return JSON format data synchronously.

Another example is defining a rectangle class

function Rectangle(width, height) {
  this.width = width || 200;
  this.height = height || 300;
}

Without passing any parameters when new, a rectangle with a default width and height of 200*300 will be created.

Whether it is calc, ajax function or Rectangle class, we all need to handle the default value in the function body. Wouldn’t it be nice if the language handles it by itself? ES6 provides this feature (Default Parameters). The following are calc, ajax, and Rectangle rewritten with the new features of ES6.

function calc(x=0, y=0) {
  // ...
  console.log(x, y)
}
calc(); // 0 0
calc(1, 4); // 1 4
 
function ajax(url, async=true, dataType="JSON") {
  // ...
  console.log(url, async, dataType)
}
ajax('../user.action'); // ../user.action true JSON
ajax('../user.action', false); // ../user.action false JSON
ajax('../user.action', false, 'XML'); // ../user.action false XML
 
function Rectangle(width=200, height=300) {
  this.width = width;
  this.height = height;
}
var r1 = new Rectangle(); // 200*300的矩形
var r2 = new Rectangle(100); // 100*300的矩形
var r3 = new Rectangle(100, 500); // 100*500矩形

As you can see, ES6 moved the default value part from braces to parentheses, and also reduced the "||" operation, and the function body has since been slimmed down. The default value of the parameter should be in the place where the parameter is defined, which looks a lot simpler. O(∩_∩)O

Default parameters can be defined at any position, such as defining a

in the middle
function ajax(url, async=true, success) {
  // ...
  console.log(url, async, success)
}

defines a default parameter async, url and success are required. In this case, you need to set the middle parameter to undefined

ajax('../user.action', undefined, function() {
   
})

Note, don’t take it for granted and change undefined to null. Even if null == undefined, after passing null, the async in the function body will be null and not true.

The following points need to be noted:

1. After defining the default parameters, the length attribute of the function will be reduced, that is, several default parameters are not included in the calculation of length

function calc(x=0, y=0) {
  // ...
  console.log(x, y)
}
function ajax(url, async=true, dataType="JSON") {
  // ...
  console.log(url, async, dataType)
}
console.log(calc.length); // 0
console.log(ajax.length); // 1

2. Let and const cannot be used to declare the default value again, var can be

function ajax(url="../user.action", async=true, success) {
  var url = ''; // 允许
  let async = 3; // 报错
  const success = function(){}; // 报错
}

Another interesting thing is: the default parameter can not be a value type, it can be a function call

function getCallback() {
  return function() {
    // return code
  }
}
 
function ajax(url, async, success=getCallback()) {
  // ...
  console.log(url, async, success)
}

You can see that the parameter success here is a function call. If the third parameter is not passed when calling ajax, the getCallback function will be executed, which returns a new function assigned to success. This is a very powerful function that gives programmers a lot of room for imagination.

For example, you can use this feature to force a certain parameter to be passed, otherwise an error will be reported

function throwIf() {
  throw new Error('少传了参数');
}
 
function ajax(url=throwIf(), async=true, success) {
  return url;
}
ajax(); // Error: 少传了参数

The above is the entire content of this article, I hope you all like it.

Statement
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
C++ 函数声明中的默认参数:全面解析其声明和用法C++ 函数声明中的默认参数:全面解析其声明和用法May 02, 2024 pm 03:09 PM

C++中的默认参数提供对函数参数指定默认值的功能,从而增强代码可读性、简洁性和灵活性。声明默认参数:在函数声明中将参数后加上"="符号,后跟默认值。用法:函数调用时,若未提供可选参数,则会使用默认值。实战案例:计算两个数之和的函数,一个参数必填,另一个可填并有默认值0。优点:增强可读性、增加灵活性、减少样板代码。注意事项:只能在声明中指定,必须位于末尾,类型必须兼容。

如何优化 C++ 函数中默认参数和可变参数的使用如何优化 C++ 函数中默认参数和可变参数的使用Apr 20, 2024 am 09:03 AM

优化C++默认和可变参数函数:默认参数:允许函数使用默认值,减少冗余。将默认参数放在最后以提高可读性。使用constexpr默认参数以减少开销。使用结构化绑定以提高复杂默认参数的可读性。可变参数:允许函数接受数量不定的参数。尽量避免使用可变参数,并在必要时使用。使用std::initializer_list优化可变参数函数以提高性能。

C++ 函数中默认参数的注意事项C++ 函数中默认参数的注意事项Apr 20, 2024 am 11:09 AM

C++函数中默认参数需要注意:必须出现在参数列表末尾。不可为同一参数指定多个默认值。vararg可变数量参数不可拥有默认值。默认参数不可被重载函数的参数共享。

C++ 默认参数的用法和优势C++ 默认参数的用法和优势Apr 18, 2024 pm 09:33 PM

是的,C++中的默认参数功能允许您在函数调用时省略某些参数,当函数被调用且未提供这些参数时,则使用默认值,从而提升代码的灵活性、可读性和可维护性。

C++ 函数的默认参数的使用方法是什么?C++ 函数的默认参数的使用方法是什么?Apr 19, 2024 pm 03:21 PM

默认参数允许函数在调用时指定默认值,简化代码并提高维护性。默认参数的语法为:typefunction_name(parameter_list,typeparameter_name=default_value)。其中,type为参数类型,parameter_name为参数名称,default_value为默认值。示例中,add函数具有两个参数,其中num2的默认值为0,调用函数时可仅指定num1,num2将使用默认值,或同时指定num1和num2。

PHP默认参数的妙用:提高代码效率的秘诀PHP默认参数的妙用:提高代码效率的秘诀Mar 24, 2024 am 10:33 AM

PHP是一种广泛使用的服务器端脚本语言,用于开发动态网页和应用程序。在PHP中,使用默认参数可以极大地提高代码的效率和简洁性。本文将探讨如何利用PHP的默认参数功能,以实现更高效的编程。1.默认参数的概念在PHP函数中,我们可以为参数设置默认值。当函数调用时未提供参数值时,将会使用默认值代替。这样做可以简化函数调用,减少冗余代码,提高可读性。2.默认参数

PHP 函数的参数传递方式如何处理可选参数和默认参数?PHP 函数的参数传递方式如何处理可选参数和默认参数?Apr 15, 2024 pm 09:51 PM

参数传递方式:按值传递(基本类型)和按引用传递(复合类型)。可选参数:允许指定参数值,但不是必需的。默认参数:允许指定可选参数的默认值。实战:通过示例函数展示如何使用可选和默认参数计算矩形面积。

C++语法错误:函数参数中不能使用默认参数,应该怎样处理?C++语法错误:函数参数中不能使用默认参数,应该怎样处理?Aug 22, 2023 am 11:15 AM

C++是一门强大的编程语言,常常被用于开发各种类型的应用程序和软件。但是,在C++编程过程中,可能会遇到函数参数中不能使用默认参数的情况,这通常是由于语法错误造成的。那么,到底该怎样处理这种语法错误呢?本文将介绍一些处理错误的方法,帮助您更好地理解C++编程。首先,我们来了解一下什么是默认参数。在C++中,可以在函数定义中给参数设置默认值。这样,当我们在调用

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment