Expand Minimize

JSH318913: Define variable before it is used

This option prohibits the use of a variable before it was defined. JavaScript has function scope only and, in addition to that, all variables are always moved - or hoisted - to the top of the function. This behavior can lead to some very nasty bugs and that's why it is safer to always use variable only after they have been explicitly defined. (JSHint option 'latedef')

CheckId JSH318913
TypeName DefineVariableBeforeItIsUsed
Severity Warning
Type JavaScriptFile
Disclaimer: The views and opinions expressed in this documentation and in SPCAF do not necessarily reflect the opinions and recommendations of Microsoft or any member of Microsoft. SPCAF and RENCORE are registered trademarks of Rencore. All other trademarks, service marks, collective marks, copyrights, registered names, and marks used or cited by this documentation are the property of their respective owners.