├── 01_basics ├── 01_variables.js ├── 02_dataTypes.js ├── 03_conversionOperation.js ├── 04_comparision.js ├── 05_strings.js ├── 06_nums_and_math.js ├── 07_datesinJs.js ├── datatypes-summary.js └── test.js ├── 02_basics ├── 01_arrays.js ├── 02_array.js ├── 03_objects.js └── 04_objects.js ├── 03_basics ├── 01_functions.js ├── 02_scopes.js ├── 03_arrow.js └── 04_iife.js ├── 04_control_flow ├── one.js ├── switch.js └── truthy.js ├── 05_iterations ├── Readme.md ├── doubt_clear.js ├── five.js ├── four.js ├── nine.js ├── one.js ├── seven.js ├── six.js ├── three.js └── two.js ├── 06_dom ├── four.html ├── one.html ├── three.html └── two.html ├── 07_projects ├── Memes-Generator │ ├── index.css │ ├── index.html │ └── index.js └── colour_changer │ ├── index.html │ ├── index.js │ └── style.css ├── 08_React ├── Color-Changer │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── react.svg │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── index.css │ │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js ├── Props-Components │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── react.svg │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── Card.jsx │ │ ├── index.css │ │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js ├── Readme.md └── my-calculator │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── calculator.png │ ├── react.svg │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── Calculator.jsx │ ├── index.css │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js └── README.MD /01_basics/01_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/01_variables.js -------------------------------------------------------------------------------- /01_basics/02_dataTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/02_dataTypes.js -------------------------------------------------------------------------------- /01_basics/03_conversionOperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/03_conversionOperation.js -------------------------------------------------------------------------------- /01_basics/04_comparision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/04_comparision.js -------------------------------------------------------------------------------- /01_basics/05_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/05_strings.js -------------------------------------------------------------------------------- /01_basics/06_nums_and_math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/06_nums_and_math.js -------------------------------------------------------------------------------- /01_basics/07_datesinJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/07_datesinJs.js -------------------------------------------------------------------------------- /01_basics/datatypes-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/01_basics/datatypes-summary.js -------------------------------------------------------------------------------- /01_basics/test.js: -------------------------------------------------------------------------------- 1 | console.log("Pramod Kumar Jena") -------------------------------------------------------------------------------- /02_basics/01_arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/02_basics/01_arrays.js -------------------------------------------------------------------------------- /02_basics/02_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/02_basics/02_array.js -------------------------------------------------------------------------------- /02_basics/03_objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/02_basics/03_objects.js -------------------------------------------------------------------------------- /02_basics/04_objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/02_basics/04_objects.js -------------------------------------------------------------------------------- /03_basics/01_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/03_basics/01_functions.js -------------------------------------------------------------------------------- /03_basics/02_scopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/03_basics/02_scopes.js -------------------------------------------------------------------------------- /03_basics/03_arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/03_basics/03_arrow.js -------------------------------------------------------------------------------- /03_basics/04_iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/03_basics/04_iife.js -------------------------------------------------------------------------------- /04_control_flow/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/04_control_flow/one.js -------------------------------------------------------------------------------- /04_control_flow/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/04_control_flow/switch.js -------------------------------------------------------------------------------- /04_control_flow/truthy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/04_control_flow/truthy.js -------------------------------------------------------------------------------- /05_iterations/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/Readme.md -------------------------------------------------------------------------------- /05_iterations/doubt_clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/doubt_clear.js -------------------------------------------------------------------------------- /05_iterations/five.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/five.js -------------------------------------------------------------------------------- /05_iterations/four.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/four.js -------------------------------------------------------------------------------- /05_iterations/nine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/nine.js -------------------------------------------------------------------------------- /05_iterations/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/one.js -------------------------------------------------------------------------------- /05_iterations/seven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/seven.js -------------------------------------------------------------------------------- /05_iterations/six.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/six.js -------------------------------------------------------------------------------- /05_iterations/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/three.js -------------------------------------------------------------------------------- /05_iterations/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/05_iterations/two.js -------------------------------------------------------------------------------- /06_dom/four.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/06_dom/four.html -------------------------------------------------------------------------------- /06_dom/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/06_dom/one.html -------------------------------------------------------------------------------- /06_dom/three.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/06_dom/three.html -------------------------------------------------------------------------------- /06_dom/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/06_dom/two.html -------------------------------------------------------------------------------- /07_projects/Memes-Generator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/Memes-Generator/index.css -------------------------------------------------------------------------------- /07_projects/Memes-Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/Memes-Generator/index.html -------------------------------------------------------------------------------- /07_projects/Memes-Generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/Memes-Generator/index.js -------------------------------------------------------------------------------- /07_projects/colour_changer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/colour_changer/index.html -------------------------------------------------------------------------------- /07_projects/colour_changer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/colour_changer/index.js -------------------------------------------------------------------------------- /07_projects/colour_changer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/07_projects/colour_changer/style.css -------------------------------------------------------------------------------- /08_React/Color-Changer/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/.eslintrc.cjs -------------------------------------------------------------------------------- /08_React/Color-Changer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/.gitignore -------------------------------------------------------------------------------- /08_React/Color-Changer/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_React/Color-Changer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/index.html -------------------------------------------------------------------------------- /08_React/Color-Changer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/package-lock.json -------------------------------------------------------------------------------- /08_React/Color-Changer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/package.json -------------------------------------------------------------------------------- /08_React/Color-Changer/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/postcss.config.js -------------------------------------------------------------------------------- /08_React/Color-Changer/public/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/public/react.svg -------------------------------------------------------------------------------- /08_React/Color-Changer/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/public/vite.svg -------------------------------------------------------------------------------- /08_React/Color-Changer/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_React/Color-Changer/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/src/App.jsx -------------------------------------------------------------------------------- /08_React/Color-Changer/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/src/index.css -------------------------------------------------------------------------------- /08_React/Color-Changer/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/src/main.jsx -------------------------------------------------------------------------------- /08_React/Color-Changer/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/tailwind.config.js -------------------------------------------------------------------------------- /08_React/Color-Changer/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Color-Changer/vite.config.js -------------------------------------------------------------------------------- /08_React/Props-Components/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/.eslintrc.cjs -------------------------------------------------------------------------------- /08_React/Props-Components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/.gitignore -------------------------------------------------------------------------------- /08_React/Props-Components/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_React/Props-Components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/index.html -------------------------------------------------------------------------------- /08_React/Props-Components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/package-lock.json -------------------------------------------------------------------------------- /08_React/Props-Components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/package.json -------------------------------------------------------------------------------- /08_React/Props-Components/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/postcss.config.js -------------------------------------------------------------------------------- /08_React/Props-Components/public/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/public/react.svg -------------------------------------------------------------------------------- /08_React/Props-Components/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/public/vite.svg -------------------------------------------------------------------------------- /08_React/Props-Components/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_React/Props-Components/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/src/App.jsx -------------------------------------------------------------------------------- /08_React/Props-Components/src/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/src/Card.jsx -------------------------------------------------------------------------------- /08_React/Props-Components/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/src/index.css -------------------------------------------------------------------------------- /08_React/Props-Components/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/src/main.jsx -------------------------------------------------------------------------------- /08_React/Props-Components/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/tailwind.config.js -------------------------------------------------------------------------------- /08_React/Props-Components/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Props-Components/vite.config.js -------------------------------------------------------------------------------- /08_React/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/Readme.md -------------------------------------------------------------------------------- /08_React/my-calculator/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/.eslintrc.cjs -------------------------------------------------------------------------------- /08_React/my-calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/.gitignore -------------------------------------------------------------------------------- /08_React/my-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/README.md -------------------------------------------------------------------------------- /08_React/my-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/index.html -------------------------------------------------------------------------------- /08_React/my-calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/package-lock.json -------------------------------------------------------------------------------- /08_React/my-calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/package.json -------------------------------------------------------------------------------- /08_React/my-calculator/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/postcss.config.js -------------------------------------------------------------------------------- /08_React/my-calculator/public/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/public/calculator.png -------------------------------------------------------------------------------- /08_React/my-calculator/public/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/public/react.svg -------------------------------------------------------------------------------- /08_React/my-calculator/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/public/vite.svg -------------------------------------------------------------------------------- /08_React/my-calculator/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_React/my-calculator/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/src/App.jsx -------------------------------------------------------------------------------- /08_React/my-calculator/src/Calculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/src/Calculator.jsx -------------------------------------------------------------------------------- /08_React/my-calculator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/src/index.css -------------------------------------------------------------------------------- /08_React/my-calculator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/src/main.jsx -------------------------------------------------------------------------------- /08_React/my-calculator/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/tailwind.config.js -------------------------------------------------------------------------------- /08_React/my-calculator/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pramodjena/GIET_MERN/HEAD/08_React/my-calculator/vite.config.js -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # GIET MERN : 2 | 3 | ## Instructor : Pramod Kumar Jena 4 | 5 | --------------------------------------------------------------------------------