- Welcome to the "40 Days of JavaScript" series!
- How to follow the progress tracker?
- What is JavaScript, and why should you learn it?
- Setting up your development environment (VS Code, browser, and Node.js).
- Writing and running your first JavaScript code.
- Loading JavaScript in different ways (
async,defer). - Quick roadmap of what’s coming in this series.
- Task and How to Submit
Your support means a lot.
-
Please SUBSCRIBE to tapaScript YouTube Channel if not done already. A Big Thank You!
-
Liked my work? It takes months of hard work to create quality content and present it to you. You can show your support to me with a STAR(⭐) to this repository.
Many Thanks to all the
Stargazerswho have supported this project with stars(⭐)
I am an independent educator and open-source enthusiast who creates meaningful projects to teach programming on my YouTube Channel. You can support my work by Sponsoring me on GitHub or Buy Me a Cofee.
Here is the video for you to go through and learn:
- Install VS Code (if not installed).
- Set up Live Server or open the HTML file directly in a browser.
- Open the DevTools Console (Right-click → Inspect → Console).
- Create a new file: index.html.
- Add a
<script>tag inside the HTML file or link an externalscript.js. - Inside
script.js, write a simple greeting program:console.log("Hello, tapaScript!"); console.log("Welcome to 40 Days of JavaScript!"); document.write("Check the browser console for a message!");
- Run the HTML file in the browser and check:
- The console log prints the text.
- The document.write() outputs text on the webpage.
- Add the script in
<head>, end of the<body>tag. - Use
asyncanddeferattributes - Understand the difefrences.
- Hope you have captured a good notes of your learning.
- On the Discord, you will find
40 Days of JavaScript. Please post about your task completion(github repo, screenshots, all) in thetask-assignmentschannel.
