What is JavaScript?
JavaScript is the programming language of the web. It runs in the browser and makes pages interactive.
Three Pillars
- HTML — structure
- CSS — style
- JavaScript — behaviour
JavaScript is the programming language of the web. It runs in the browser and makes pages interactive.
// Inline script
<script>alert("Hello!");</script>
// External file
<script src="app.js"></script>
More in JavaScript