DEV Community

Syed Muhammad Ali Raza
Syed Muhammad Ali Raza

Posted on

Learn JavaScript Basics

Introduction

JavaScript, often abbreviated to JS, is a basic programming language that allows web developers to bring interactivity and dynamics to web pages. From simple animations to complex web applications, JavaScript plays an important role in shaping the modern web experience. In this article, we will dive into the basics of JavaScript, providing practical implementations and real-life examples to help you start your coding journey.

Getting Started: JavaScript Basics

JavaScript is a versatile scripting language mainly used to add interactivity to web pages. Managed by Web Elements, it allows you to manipulate HTML elements, control data flow, and respond to user actions.

1. Variables and data types

Variables are containers for storing data. JavaScript supports a variety of data types, including strings, numbers, values, and objects.

let name = "John";
let age = 30;
let isStudent = true;
Enter fullscreen mode Exit fullscreen mode

2. Function

A function is a reusable block of code that performs a specific task. They promote code organization and reuse.

function hello (name) {
    console.log("Hello, ${name}!");
}

hello ( "Elisa" ); // Result: Hello, Elisa!
Enter fullscreen mode Exit fullscreen mode

3. Conditional Statement

Conditional statements allow you to execute different code based on certain conditions.

let temperature = 25;

if (temperature > 30) {
    console.log("It's hot outside!");
} else if (temp > 20) {
    console.log("It's hot outside.");
} else {
    console.log("It's cold outside.");
}
Enter fullscreen mode Exit fullscreen mode

4. For Loop

Function allow you to repeat a block of code multiple times. A for loop is often used for such tasks.

for (let i = 1; i <= 5; i++) {
    console.log("Iteration ${i}");
}
Enter fullscreen mode Exit fullscreen mode

5. DOM manipulation

The Document Object Model (DOM) is a type of HTML element. JavaScript can modify and interact with these elements.

var button = document.getElementById("MyButton");

button.addEventListener("click", function() {
    alert("Button clicked!");
});
Enter fullscreen mode Exit fullscreen mode

Real life example: Interactive task list

Create a simple interactive task list using JavaScript. This example shows the power of JavaScript in creating dynamic and user-friendly web pages.

<! DOCTYPE html>
<html>
<head>
    <title>Simple task list</title>
</head>
<body>
    <h1>My task list</h1>
    <input type="text" id="taskInput" host="Enter task">
    <button id="addButton">Add Task</button>
    <ul id="taskList"></ul>

    <script>
        const addButton = document.getElementById("addButton");
        const taskInput = document.getElementById("taskInput");
        const taskList = document.getElementById("taskList");

        addButton.addEventListener("click", function() {
            const taskText = taskInput.value;
            if (taskText) {
                const listItem = document.createElement("li");
                listItem.textContent = taskText;
                taskList.appendChild(listItem);
                taskInput.value = "";
            }
        });
    </script>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

The results

JavaScript is a dynamic and powerful programming language that makes web pages static. With variables, functions, conditionals, loops, and capabilities in DOM manipulation, you can create interactive and user-friendly experiences. A real example of the task list shows how JavaScript can turn a simple web page into a fun and practical application. As you continue your journey with JavaScript, you'll unlock endless possibilities for web development, allowing you to build web applications that engage users and offer seamless experiences.

Top comments (0)