Course Content
Introduction to JavaScript
JavaScript is one of the most popular and widely used programming languages in the world. It plays a crucial role in web development, enabling dynamic content, interactivity, and enhanced user experiences in web pages and applications. Let’s dive into what JavaScript is, its history, and how it fits into the modern web.
0/6
How to Add JavaScript?
Before diving into the basics of JavaScript, it’s essential to understand how to include JavaScript in an HTML file. There are three main ways to do this:
0/3
Different Ways to Output Data
JavaScript provides several ways to "display" or output data, allowing you to present dynamic content to users in various ways. Each method serves a different purpose and is used in different scenarios depending on the requirements. Here are the primary methods for displaying data using JavaScript:
0/4
Variables and Constants
Variables and constants in JavaScript are used to store data values. Depending on how you declare them, their value can be changed or fixed.
0/2
Data Types
JavaScript provides different types of values that can be stored in variables. These are categorized into two types: Primitives and Non-Primitives.
0/2
Conditional Statements (if, else if, else)
Conditional statements execute different actions based on different conditions.
0/2
Arrays
In JavaScript, an array is a special type of object that stores an ordered collection of values (elements). Arrays are zero-indexed, meaning the first element is accessed with index 0.
0/5
DOM Manipulation
DOM Manipulation is the process of using JavaScript to interact with and modify the HTML and CSS of a webpage. The DOM is essentially the structure of the webpage, represented as nodes, which can be elements, attributes, or pieces of text.
0/4
String Functions in JavaScript
0/1
Number Functions in Javascript
0/1
RegEx (Regular Expressions) in JavaScript
Regular expressions (regex) are patterns used to match sequences of characters in strings. They are powerful tools for searching, validating, and manipulating text.
0/3
JavaScript
About Lesson

Creating new elements or removing existing ones is a powerful feature of JavaScript, allowing you to update the structure of the page based on user interactions.

You can create new elements with document.createElement(). Once created, these elements are not part of the DOM until you append them using appendChild() or append().

The append() method can insert multiple nodes (elements) or text strings to a specified parent node. If you try to add multiple elements, they’ll all be appended as children. Additionally, append() accepts both text and DOM nodes.

  • Syntax: parent.append(child1, child2, …, childN)
  • Returns: undefined
  • Use case: Adding multiple nodes or text content.

Example:

JavaScript
// Select the parent element
const parentElement = document.getElementById("parentDiv");

// Create new elements
const childElement1 = document.createElement("div");
childElement1.textContent = "This is the first child.";

const childElement2 = document.createElement("div");
childElement2.textContent = "This is the second child.";

// Use append to add both elements and text
parentElement.append(childElement1, childElement2, "Some text content");

The appendChild() method only accepts a single node and appends it to the specified parent node. Unlike append(), it does not accept text strings, only DOM nodes. If you try to add text, you’ll get an error.

  • Syntax: parent.appendChild(child)
  • Returns: The appended child node
  • Use case: Adding a single node.

Example:

JavaScript
// Select the parent element
const parentElement = document.getElementById("parentDiv");

// Create a new element
const childElement = document.createElement("div");
childElement.textContent = "This is a child added with appendChild.";

// Use appendChild to add the single node
parentElement.appendChild(childElement);
  • Multiple elements: append() can take multiple elements or text, while appendChild() only takes one node.
  • Text strings: append() allows text strings directly, but appendChild() does not.
  • Return value: append() returns undefined, whereas appendChild() returns the appended node.

To remove elements from the DOM, use the remove() method. Alternatively, you can use removeChild() on a parent element.

Example:

JavaScript
let elementToRemove = document.getElementById("main-title");
elementToRemove.remove();  // Direct removal of the element