标签:func nbsp not ons cti OLE UNC 变量提升 number
1.var c = 1;
function c(c){
console.log(c)
}
c(2) // c is not a function
2. var c = 1;
function c (){}
console.log(typeof c) //‘number‘
标签:func nbsp not ons cti OLE UNC 变量提升 number
原文地址:https://www.cnblogs.com/qiyc/p/11253767.html