ใช่ เป็นการดีที่จะวางการประกาศ 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>
ต่อไปนี้เป็นเหตุผลที่ถูกต้อง -
- ให้ที่เดียวเพื่อตรวจสอบตัวแปรทั้งหมด
- ช่วยในการหลีกเลี่ยงตัวแปรส่วนกลาง
- หลีกเลี่ยงการประกาศซ้ำ
- โค้ดนี้อ่านง่ายสำหรับผู้อื่นเช่นกัน