हां, सभी जावास्क्रिप्ट घोषणाओं को शीर्ष पर रखना एक अच्छा अभ्यास है। आइए एक उदाहरण देखें -
उदाहरण
<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>
निम्नलिखित वैध कारण हैं -
- सभी चरों की जांच के लिए एक ही स्थान देता है।
- वैश्विक चर से बचने में मदद करता है
- पुन:घोषणाओं से बचा जाता है।
- कोड दूसरों के लिए भी पढ़ना आसान है।