我想将这些箭头功能重写为常规功能。
当尝试通过JS Hint验证代码时,这两个箭头函数带有警告。
historySelect.addEventListener('change', () => {
restoreHistoryAction(historySelect.value);
})
和
history.forEach((entry, index) => {
var option = document.createElement("option");
option.value = index;
option.textContent = index === 0 ? "Start " : "Action " + index;
historySelect.appendChild(option);
})
我是一个初学者,所以我试图学习两者之间的区别。