在js中当var遇到赋值时函数
2021-03-15 14:32
标签:提升 过程 code not OLE 没有 lan console 执行 赋值时函数提升的是var,函数并没有提升 执行过程如下 在js中当var遇到赋值时函数 标签:提升 过程 code not OLE 没有 lan console 执行 原文地址:https://www.cnblogs.com/cupid10/p/12793304.html在js中当var遇到赋值时函数
fn(); //fn is not a function
// console.log(fn) //undefined
var fn=function(){
console.log(3)
};
fn()
var fn;
fn(); //fn is not a function
;fn=function(){
console.log(3)
};
fn()
上一篇:URL常见协议
下一篇:几个不错的网站状态报告开源系统