document.querySelector('.box').onmouseover = function () {
...
}
请解释什么是= function () {}
. 它不是函数arrow
或declarations
. 为什么function
没有名字。谢谢
document.querySelector('.box').onmouseover = function () {
...
}
请解释什么是= function () {}
. 它不是函数arrow
或declarations
. 为什么function
没有名字。谢谢
这是一个函数表达式 - 用作表达式的函数。函数表达式中的函数可以不命名。