7 DAYS JAVASCRIPT SYALLABUS
Table Of Contents
History Of Java Script
01 Introduction to JavaScript
Evolution of JavaScript: From ECMAScript to ES6 and beyond
Importance of JavaScript in web development
Core Concepts
02 Variables
Declaration (var, let, const)
Scope and hoisting
Data Types
Primitive types (string, number, boolean, null, undefined, symbol)
Reference types (objects, arrays)
Arrays and Objects
Creating and manipulating arrays
Understanding objects and their properties
03 Control Flow and Functions
Conditional Statements
if, else if, else
switch statement
Functions
Function declaration vs. expression
Arrow functions
Higher-order functions (filter, map, reduce, forEach)
04 Document Object Model (DOM)
Introduction to the DOM
Selecting and manipulating DOM elements
Event handling
Creating and modifying HTML elements dynamically
Project: TODO Application
05 Overview of the TODO application project
Setting up the project environment
Implementing core features:
Adding tasks
Marking tasks as complete
Deleting tasks
Enhancing the application with local storage and styling