Services Work Learn About Contact
0/10
Lesson 1 of 10

What is JavaScript?

JavaScript is a programming language that makes websites interactive. It runs in the browser and can respond to user actions like clicks, typing, and scrolling.

Unlike HTML (structure) and CSS (style), JavaScript is a real programming language with variables, logic, and functions.

You can include JavaScript with a <script> tag, either inline or linked from an external .js file.

JS
<!-- Inline script -->
<script>
  alert("Hello from JavaScript!");
<\/script>

<!-- External script -->
<script src="app.js"><\/script>
🧠

Quick Quiz

Answer correctly to unlock the next lesson.

Support the mission

This learning platform is 100% free: no ads, no tracking, no paywalls. If it helped you learn something useful, you can support future lessons or donate to Doctors Without Borders, which provides emergency medical care in crisis zones worldwide.

🎉

You completed JavaScript!

You finished all 10 lessons and quizzes. You now know the basics of JavaScript.