原创
2023-10-28 09:12:19
224 阅读
原创
2023-10-27 10:36:11
56 阅读
原创
2023-10-26 13:27:20
97 阅读
原创
2023-10-25 13:49:12
81 阅读
原创
2023-10-24 12:03:48
80 阅读
原创
2023-10-23 08:11:38
53 阅读
原创
2023-10-22 22:46:11
43 阅读
原创
2023-10-20 08:36:05
60 阅读
原创
2023-10-19 08:29:05
48 阅读
原创
2023-10-18 08:17:28
166 阅读
原创
2023-10-17 08:29:52
88 阅读
原创
2023-10-16 08:16:06
251 阅读
原创
2023-10-15 15:19:41
126 阅读
一、函数参数的扩展ES6支持参数的默认值:function fn(name,age,sex="男")
{
console.log(`大家好,我是${name},性别${sex},今年${age}岁!`);
}
fn("刘德华",45); //大家好,我是刘德华,性别男,今年45岁!传递undefined,取默认值:function fn(name,sex="男",age)
{
console.
原创
2023-10-14 22:00:40
24 阅读
原创
2023-10-13 08:35:21
44 阅读
原创
2023-10-12 08:10:09
55 阅读
一、Array.of()将参数中所有值作为元素形成数组:console.log(Array.of(1, 2, 3, 4)); // [1, 2, 3, 4]参数的值可以为不同的类型:console.log(Array.of(1, '2', true)); // [1, '2', true]参数为空时返回空数组:console.log(Array.of()); // []注意:let arr1 =
原创
2023-10-11 08:18:27
62 阅读
原创
2023-10-10 08:32:01
83 阅读
原创
2023-10-09 08:29:42
62 阅读
原创
2023-10-08 08:33:10
187 阅读
原创
2023-10-07 08:41:32
104 阅读
原创
2023-09-21 08:28:19
1868 阅读
原创
2023-09-20 08:37:06
554 阅读
原创
2023-09-19 08:17:25
71 阅读
原创
2023-09-18 08:22:03
138 阅读
原创
2023-09-17 09:08:50
226 阅读
原创
2023-09-16 10:58:34
135 阅读
原创
2023-09-15 08:57:04
167 阅读