ES6 语法详解(形参默认值)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> </body> <script type="text/javascript"> /** * 形参默认值 * 当不传入参数的时候默认使用形参中的默认值 */ function point(x = 1,y =2){ return x + y } console.log(point()) console.log(point(10,20)) </script> </html>
作者:彼岸舞
时间:2021\08\16
内容关于:前端知识库
本文属于作者原创,未经允许,禁止转发