初步理解js作用域
阿新 • • 發佈:2017-11-16
body ack 實現 con es6 沒有 func script hang
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // 在ES5中,只有全局作用域和函數作用域,並沒有塊作用域,當然我們可以實現塊作用域的功能。 //在ES6中,let為js添加了新的作用域就是塊作用域 function person(){ if(true){ varname = ‘zhangsan‘ } } console.log(name) if(true){ var age =12; } console.log(age)// 12 if(true){ let ages =20; } console.log(ages)// undefined </script> </body> </html>
詳解請移步:http://blog.csdn.net/qq_23980427/article/details/54645701
初步理解js作用域