Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 Demos

Check 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;