局部变量一个变量,其名称仅在局部作用域内与其值绑定。示例jslet global = 5; // A global variable function fun() { let local = 10; // A local variable } 另请参阅 局部变量 在维基百科上