javascript-声明提升
时间:2021-05-24 01:47:56
收藏:0
阅读:0
let a = 1 function b() { /* //一 作用域内声明提升 console.log(a)//undefined let a = 2 */ //二 console.log(a)//1 a = 2 } b()
评论(0)