摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>函数参数的默认值</title> </head> <body> <script> // ES6 允许给函数参数(形参)赋值初始值 // function add(a,b,c){ // 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>rest参数</title> </head> <body> <script> // ES6引入rest参数,用于获取函数的实参,用来代替arguments // ES5获取实参的方法 阅读全文