https://github.com/imrahul05/30days_javascript_challenge
This repository is designed to help users improve their JavaScript skills over 30 days through a series of projects and exercises. It includes a variety of JavaScript concepts such as variables, functions, events, and more. The repository also features live demos of projects like Todo Apps.
https://github.com/imrahul05/30days_javascript_challenge
javascript reactjs
Last synced: 3 months ago
JSON representation
This repository is designed to help users improve their JavaScript skills over 30 days through a series of projects and exercises. It includes a variety of JavaScript concepts such as variables, functions, events, and more. The repository also features live demos of projects like Todo Apps.
- Host: GitHub
- URL: https://github.com/imrahul05/30days_javascript_challenge
- Owner: imRahul05
- Created: 2024-10-02T14:51:33.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-02-12T05:51:42.000Z (5 months ago)
- Last Synced: 2025-02-12T06:48:27.851Z (5 months ago)
- Topics: javascript, reactjs
- Language: HTML
- Homepage: https://imrahul05-todo-app.vercel.app/
- Size: 4.18 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 30Days_JavaScript_Challenge
### Repository: [30Days_JavaScript_Challenge](https://github.com/imRahul05/30Days_JavaScript_Challenge)
[](https://app.netlify.com/sites/imrahuvdev/deploys)
This repository is designed to help users improve their JavaScript skills over 30 days through a series of projects and exercises. It includes a variety of JavaScript concepts such as variables, functions, events, and more. The repository also features live demos of projects like Todo Apps.
## Live DemosCheck out the live demos of some of the projects:
- [Todo App 1 using HTML,CSS ,JS](https://todo-list-htmls-css-js-by-rahul.vercel.app/)
- [Todo App 2 (React,js)](https://imrahul05-todo-app.vercel.app/)
- [30 Days JavaScript Challenge](https://30-days-java-script-challenge-bice.vercel.app/)
- [Dice Simulator](https://dicesm.netlify.app/)
- [My HTML PORTFOLIO](https://imrahuldev.netlify.app/)
- [Calculator](https://simplicalculatorbyrahul.netlify.app/)
- [How to setup your Github Repo](https://imrahul05.github.io/How-to-setup-github-repo/)## JavaScript Concepts
### Variables
Variables are used to store data values. In JavaScript, you can declare variables using `var`, `let`, or `const`.
- `var`: Function-scoped or globally-scoped variable.
- `let`: Block-scoped variable.
- `const`: Block-scoped variable that cannot be reassigned.#### Example
```javascript
var name = "John";
let age = 30;
const isStudent = true;