判断数组里面的值是否是空位
let arr = ['wanjunshijie', , , ,]
console.log(0 in arr)
console.log(1 in arr)
结果
true
false
...
yekong
3年前 (2021-09-07)
喜欢
legend图标
通过icon设置图标
circle圆形
rect 方形
roundRect 圆角方形
triangle 三角形
diamond 棱形
pin 水滴
arrow箭头
none 无图标
legend: {
data: ["已解决"...
yekong
3年前 (2021-09-07)
喜欢
使用in来判断对象中是否包含某个值
let obj = {
a: 'ceshi',
b: 'wanjunshijie'
}
console.log('a' in obj)
console.log('x'...
yekong
3年前 (2021-09-06)
喜欢
let arr = ['ceshi', 'wanjun', 'wanjunshijie']
function fun(a, b, c) {
console.log(a, b, c)
}
fun(...arr)
执行结果...
yekong
3年前 (2021-09-06)
喜欢
let json = {
a: 'wanjunshijie',
b: '完俊世界'
}
function fun({a, b = 'web'}) {
console.log(a, b)
}
fun(jso...
yekong
3年前 (2021-09-06)
喜欢
function add(a, b) {
return a + b
}
var newadd = (a, b) => a + b;
不是一行的时候需要加{}
var newadd = (a, b) => {
a + b
}
...
yekong
3年前 (2021-09-06)
喜欢
function add2(a, b=1) {
return a + b
}
console.log(add2.length)
结果是1
function add(a, b) {
return a + b
}
console.log(add.length)
...
yekong
3年前 (2021-09-06)
喜欢
function add(a, b = 1) {
'use strict'
return a + b
}
console.log(add(0))
上面的会报错,下面的可以运行
function add(a, b) {
'us...
yekong
3年前 (2021-09-06)
喜欢
设置当函数值不符合要求时抛出错误
function add(a, b = 1) {
if (a == 0) {
throw new Errow('A is Error')
}
return a + b
}
console....
yekong
3年前 (2021-09-06)
喜欢
事先设置默认值
function add(a, b = 1) {
return a + b
}
console.log(add(1))
执行结果是1
...
yekong
3年前 (2021-09-06)
喜欢