码迷,mamicode.com
首页 > Web开发 > 详细

js变量提升

时间:2019-07-27 09:53:13      阅读:121      评论:0      收藏:0      [点我收藏+]

标签: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‘

 

js变量提升

标签:func   nbsp   not   ons   cti   OLE   UNC   变量提升   number   

原文地址:https://www.cnblogs.com/qiyc/p/11253767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!