我是Java语言的新手,当时我正在阅读其他开发人员的文件,我对数组的这种表示感到困惑。 这是代码的一部分:
function checkStartDateIsCurrentDate() {
const date = new Date(new Date().getTime() + 24 * 60 * 60 * 1000);
const currentMonth = date.toLocaleString('en-us', { month: 'long' });
const currentDay = date.getDate() - 1;
const currentYear = date.getFullYear();
this.startDateMonthDropdown.getText().then(function (month) {
expect(month).toBe(currentMonth)
});
this.startDayInput.getAttribute('value').then(function (day) {
expect(day).toBe(`${currentDay}`)
});
this.startYearDropdown.getText().then(function (year) {
expect(year).toBe(`${currentYear}`)
});
}
这是我不知道我以前没看过的符号。
var $eventsCallbacks = {
fetch: [],
receive: [],
wait: [],
change: []
}
符号:arrayname(arg1 ....)。 编辑:我不了解的是括号之间的args,我没有注意到它只是函数的回调。