标签:bre 它的 函数表达式 优先级 使用 highlight 匿名函数 name fun
function breakfast(argument){
}
console.log(breakfast.name) //breakfast
let breakfast = function(argument){
}
console.log(breakfast.name) //breakfast
let breakfast = function superBreakfast(argument){
}
console.log(breakfast.name) //superBreakfast
标签:bre 它的 函数表达式 优先级 使用 highlight 匿名函数 name fun
原文地址:https://www.cnblogs.com/fe-cherrydlh/p/11056536.html