return ({ Y: year, m: month, d: day, H: hour, i: minite, s: second})[matches];如果写成一行return {Y: year,m: month,d: day,H: hour,i: minite,s: second}[matches];没有明白最后[matches]的语法
1 回答
缥缈止盈
TA贡献2041条经验 获得超4个赞
匹配,选择对象中的一个属性
function test() {
const s = {
name: 'xiaoming',
age: 18,
}['name']
console.log(s)
}
test() // 'xiaoming'
function test2() {
return {
name: 'xiaoming',
age: 18,
}['name']
}
test2() // 'xiaoming'
添加回答
举报
0/150
提交
取消