Home

Introduction to JavaScript

JavaScript is a programming language that allows you to implement complex features on web pages. It enables interactive web applications and is an essential part of web development.

Adding JavaScript to HTML

You can include JavaScript in your HTML documents in three ways: inline, internal, and external.

Inline JavaScript


<button onclick="alert('Hello World!')">Click Me</button>
    

Internal JavaScript

You can place JavaScript code within a <script> tag inside the <head> or <body> section of your HTML document.


<script>
  console.log('Hello from internal script!');
</script>
    

External JavaScript

For larger scripts, it’s best to place your JavaScript code in an external file and link to it using the <script> tag.


<script src="script.js"></script>
    

Variables

Variables store data values. In JavaScript, you can declare variables using var, let, or const.


let name = 'John'; // This variable can be changed
const age = 30; // This variable cannot be changed
    

Data Types

JavaScript has several data types, including:

Functions

Functions are blocks of code designed to perform a particular task. You can define a function and call it when needed.


function greet() {
  alert('Hello, World!');
}
greet(); // Calls the function
    

Exercise

Create a simple webpage that includes a button. When the button is clicked, display an alert with a message of your choice. Use both inline and internal JavaScript in your code.