文件名称:js-hoisting-readme-bootcamp-prep-000
文件大小:7KB
文件格式:ZIP
更新时间:2024-04-17 02:22:33
JavaScript
吊装 目标 解释什么是吊装 解释为什么吊装很重要,要记住 什么是吊装 JavaScript有一个精心设计的技巧,通常会导致麻烦(如今,即使技巧使用得当,它也会使代码的可读性降低)。 这是要点: // When we declare and assign a variable with `var` var myVariable = 1 ; // JavaScript actually treats it as a separate declaration and assignment: var myVariable ; myVariable = 1 ; // Here's the thing: JavaScript *hoists* variables like this to the _top_ of the file. // So if we have a long file like