About 3,220 results
Open links in new tab
  1. A great way to start with JavaScript is by building a Beginner-Friendly To-Do List App. This project will help you practice DOM manipulation, event handling, and local storage for data persistence.

    Step 1: Setup HTML Structure

    Create a basic HTML file with an input field, an "Add" button, and a list container.

    <!DOCTYPE html>
    <html>
    <head>
    <title>To-Do List</title>
    </head>
    <body>
    <h2>My To-Do List</h2>
    <input type="text" id="taskInput" placeholder="Enter a task">
    <button id="addTaskBtn">Add Task</button>
    <ul id="taskList"></ul>

    <script src="script.js"></script>
    </body>
    </html>
    Copied!

    Step 2: Add JavaScript Functionality

    Use JavaScript to add tasks, mark them as complete, and delete them. Store tasks in localStorage so they persist after page reload.

    Feedback
  2. Javascript Projects - GeeksforGeeks

    Mar 5, 2026 · These JavaScript projects have been created using HTML, CSS, and JavaScript. HTML and CSS were used to design the user interface, while JavaScript was utilized to add functionality to the …

  3. JavaScript Examples - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  4. 40 JavaScript Projects for Beginners – Easy Ideas to Get Started …

    • See More

    Mar 24, 2021 · I have created a list of 40 beginner friendly project tutorials in Vanilla JavaScript, React, and TypeScript. My advice for tutorials would be to watch the video, build the project, break it apart …

  5. 100+ JavaScript Projects | Learn Web Development

    Master web development with our curated collection of 100+ beginner-friendly JavaScript projects. Build real-world applications using HTML, CSS, and Vanilla …

  6. 21 Easy JavaScript Projects for Beginners (Code included!)

    • 21. Maze Game
      Why do this project? 1. It gives you a solid idea of how JavaScript core skills and functions can be used to create interactive games 2. You can put this project in your portfolio and challenge friends 3. Learn more about how to use JavaScript math concepts, create elements, and use loops Maze Game Source …
    See more on skillcrush.com
  7. 100+ JavaScript Projects With Source Code - DEV …

    Feb 9, 2024 · Are you looking for the best JavaScript Projects to increase your JavaScript knowledge with source code? In this article I have shared 100 best …

  8. javascript-projects · GitHub Topics · GitHub

    Feb 28, 2026 · Explore a curated collection of 100 practical JavaScript projects to sharpen your skills from beginner to advanced levels. Explore a curated …

  9. 16 Best JavaScript Projects for Beginners [With Source …

    Apr 3, 2024 · That's exactly why I wrote this article: to share 16 JavaScript projects to help beginners like you. Whether you’re looking to start a career in web …

  10. 50 JavaScript Projects | 50-JavaScript-Projects

    50 JavaScript Projects – a meticulously curated collection of mini-projects designed to refine, test, and showcase your JavaScript skills practically and elegantly.

  11. 80+ JavaScript Projects with Source Code - Great Learning

    Build your skills with 80+ JavaScript projects, ranging from beginner to advanced, using HTML and CSS, with source code and live demos.