關於Js執行塊級做用域問題
/***作用域
- 塊級做用域和聲明提高的問題
- **/ console.log("111"); function func (falg){ console.log("222"); if(!falg){ // true 走進 function getValue() { return 'a'; } console.log("333"); }else { function getValue() { return 'b'; } console.log("444"); } console.log("555"); return getValue(); } console.log("666"); console.log(func(true)); //b console.log("777");
歡迎關注本站公眾號,獲取更多信息