diff --git a/docs/uts/buildin-object-api/array.md b/docs/uts/buildin-object-api/array.md index 2b422310a82e9edb25d008fa821036d7e12c87ee..d4264ca7a14844f3ab90361c76c95b83fcae38d2 100644 --- a/docs/uts/buildin-object-api/array.md +++ b/docs/uts/buildin-object-api/array.md @@ -144,7 +144,7 @@ console.log(plants); -### push(items) +### push(...items) @@ -169,7 +169,7 @@ console.log(animals); -### concat(items) +### concat(...items) @@ -187,7 +187,7 @@ console.log(array3); -### concat(items) +### concat(...items) @@ -302,7 +302,7 @@ array2.sort((a: number, b: number):number => a - b); -### splice(start, deleteCount, items) +### splice(start, deleteCount, ...items) @@ -325,7 +325,7 @@ console.log(months); -### unshift(items) +### unshift(...items) diff --git a/docs/uts/buildin-object-api/console.md b/docs/uts/buildin-object-api/console.md index 2b0d87847ba8b6e3af8ab434a40124f18afe4f49..04cd24eb38e40889ad992d2a758e40ec2296b1d3 100644 --- a/docs/uts/buildin-object-api/console.md +++ b/docs/uts/buildin-object-api/console.md @@ -4,7 +4,7 @@ ## 静态方法 -### debug(data) +### debug(...data) @@ -14,7 +14,7 @@ -### error(data) +### error(...data) @@ -24,7 +24,7 @@ -### info(data) +### info(...data) @@ -34,7 +34,7 @@ -### log(data) +### log(...data) @@ -44,7 +44,7 @@ -### warn(data) +### warn(...data) @@ -54,4 +54,155 @@ +### assert(condition?, ...data) + + + + + + + + + +### clear() + + + + + + + + + +### count(label?) + + + + + + + + + +### countReset(label?) + + + + + + + + + +### dir(item?, options?) + + + + + + + + + +### dirxml(...data) + + + + + + + + + +### group(...data) + + + + + + + + + +### groupCollapsed(...data) + + + + + + + + + +### groupEnd() + + + + + + + + + +### table(tabularData?, properties?) + + + + + + + + + +### time(label?) + + + + + + + + + +### timeEnd(label?) + + + + + + + + + +### timeLog(label?, ...data) + + + + + + + + + +### timeStamp(label?) + + + + + + + + + +### trace(...data) + + + + + + + + + + diff --git a/docs/uts/buildin-object-api/math.md b/docs/uts/buildin-object-api/math.md index f15199890030a41ae77f2d6dd44f3df81798310c..0821a0c918606334669f73e499ad8b0af3595063 100644 --- a/docs/uts/buildin-object-api/math.md +++ b/docs/uts/buildin-object-api/math.md @@ -626,7 +626,7 @@ console.log(Math.log(10)); ``` -### max(values) +### max(...values) @@ -642,7 +642,7 @@ console.log(Math.max(-1, -3, -2)); ``` -### min(values) +### min(...values) @@ -777,3 +777,13 @@ console.log(Math.tan(1)); + +### hypot(...values) + + + + + + + + diff --git a/docs/uts/buildin-object-api/string.md b/docs/uts/buildin-object-api/string.md index 82616a319d2d6624d7308f0841d59b1d986160c6..1f7cf0d8d5c427a2eaaad9d0abdac0b96b544406 100644 --- a/docs/uts/buildin-object-api/string.md +++ b/docs/uts/buildin-object-api/string.md @@ -197,7 +197,7 @@ console.log(String.fromCharCode(189, 165999, 190, 61)); -### concat(strings) +### concat(...strings) diff --git a/docs/uts/buildin-object-api/timers.md b/docs/uts/buildin-object-api/timers.md index 38dafe36e1a066acac3b64e61d839769707a6b89..d3253bc09d1ba36091beaf24394eaaf61a6c0ff6 100644 --- a/docs/uts/buildin-object-api/timers.md +++ b/docs/uts/buildin-object-api/timers.md @@ -2,7 +2,7 @@ ## 实例方法 -### setInterval(handler, timeout?, arguments) +### setInterval(handler, timeout?, ...arguments) @@ -14,7 +14,7 @@ -### setTimeout(handler, timeout?, arguments) +### setTimeout(handler, timeout?, ...arguments)