在 JavaScript 中将所有声明放在顶部是一种好习惯吗?
是的,这是一种好的做法,可以将所有的 JavaScript 声明都放在最前面。我们来看一个示例 -
示例
<html> <head> <title>JavaScript String match() Method</title> </head> <body> <script> // all the variables declared at top var str, re, found; str = "For more information, see Chapter 3.4.5.1"; re = /(chapter \d+(\.\d)*)/i; found = str.match( re ); document.write(found ); </script> </body> </html>
以下是它的优点 -
- 为检查所有变量提供了一个单一的位置。
- 帮助避免全局变量
- 避免重新声明。
- 对于其他人来说,代码也很容易阅读。
广告