SyntaxStudy
Sign Up
JavaScript What is JavaScript?
JavaScript Beginner 1 min read

What is JavaScript?

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
Example
// Inline script
<script>alert("Hello!");</script>

// External file
<script src="app.js"></script>