Inspectopedia
 
2024.3

'var' declared not at the beginning of a function

Info
Code Style
New
Last modified: 03 December 2024

Checks that declarations of local variables declared with var are at the top of a function scope.

By default, variable declarations are always moved ("hoisted") invisibly to the top of their containing scope when the code is executed. Therefore, declaring them at the top of the scope helps represent this behavior in the code.