Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (3 months ago)
- Default Branch: main
- Last Pushed: 2024-12-20T18:45:23.000Z (16 days ago)
- Last Synced: 2024-12-20T19:41:45.738Z (15 days ago)
- Topics: javascript, reactjs
- Language: HTML
- Homepage: https://imrahul05-todo-app.vercel.app/
- Size: 4.13 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)
[![Netlify Status](https://api.netlify.com/api/v1/badges/d10ef50e-8eeb-43c3-812b-523754c02e5b/deploy-status)](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;