Lesson 3: The <script> Tag, External Scripts & Browser Execution with challenges!
🔸 What’s the <script> tag?
The <script> tag tells the browser: ➡️ "Hey! Here's some JavaScript. Run it!"
You can put it:
Inline, directly inside HTML
Externally, loaded from a .js file
Modify execution with async or defer
✅ Example 1: Inline S...
javascript-day-1.hashnode.dev6 min read