看不懂一段别人的代码,跪求大佬讲解
var datas = {
limit: 10,
offset: offset,
}
console.log(datas)
if (that.data.gameType != ‘’) {
datas
.
gameType = that.data.gameType;
}
if (that.data.ballType != ‘’) {
datas.ballType = that.data.ballType;
}
这段代码定义了一个对象datas,但是后面为什么可以添加gameType 和ballType 两个字段?求解释。代码不存在问题
6 回复