├── yourPlayground.js ├── notes ├── baby-capstone.js ├── console-log.js ├── redBlueGreenSquares.js ├── variables.js ├── mini-weather-app.js ├── arrays.js ├── tip-calculator.js ├── objects.js ├── conditions.js ├── functions.js ├── promises-async-await-apis.js └── promise-examples.js ├── functions └── sum │ ├── solution │ ├── script.js │ └── index.html │ └── exercise │ ├── index.html │ └── script.js ├── style.css ├── projects ├── fightingGame │ ├── exercise │ │ ├── style.css │ │ ├── index.html │ │ └── script.js │ └── solution │ │ ├── sounds │ │ ├── fastheal.mp3 │ │ ├── quickhit.mp3 │ │ ├── fastpunch.mp3 │ │ └── quickheal.mp3 │ │ ├── style.css │ │ ├── index.html │ │ └── solution.js ├── weather-app │ ├── exercise │ │ ├── style.css │ │ ├── script.js │ │ └── index.html │ └── solution │ │ ├── style.css │ │ ├── script.js │ │ └── index.html ├── rockpaperscissors │ ├── exercise │ │ ├── style.css │ │ ├── index.html │ │ └── script.js │ └── solution │ │ ├── style.css │ │ ├── index.html │ │ └── script.js ├── stopwatch │ ├── solution │ │ ├── index.html │ │ ├── style.css │ │ └── script.js │ └── exercise │ │ ├── index.html │ │ ├── style.css │ │ └── script.js ├── tip-calculator │ ├── exercise │ │ ├── style.css │ │ ├── index.html │ │ └── script.js │ └── solution │ │ ├── style.css │ │ ├── index.html │ │ └── script.js └── fetchmovies │ └── solution │ ├── style.css │ ├── index.html │ └── script.js ├── replit.nix ├── exercises ├── findMax.js ├── arraysorting.js ├── palindromechecker.js ├── converthourstoseconds.js ├── daysinamonth.js └── savingsstrategy.js ├── api ├── dogRandom │ ├── index.html │ └── script.js └── superHero │ ├── index.html │ └── script.js ├── classes ├── banksClass │ ├── index.html │ └── script.js └── carClass │ └── script.js ├── dom └── red-yellow-green │ ├── index.html │ └── script.js ├── index.html ├── .replit └── playground.js /yourPlayground.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/baby-capstone.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/sum/solution/script.js: -------------------------------------------------------------------------------- 1 | console.log("Sum solution")) -------------------------------------------------------------------------------- /notes/console-log.js: -------------------------------------------------------------------------------- 1 | console.log('hello world') 2 | console.log('Rafeh Qazi') -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | font-family: 'Inter', sans-serif; 3 | font-family: 'Lato', sans-serif; 4 | } -------------------------------------------------------------------------------- /projects/fightingGame/exercise/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: 'red'; 3 | } 4 | 5 | #result { 6 | background:'blue'; 7 | } -------------------------------------------------------------------------------- /notes/redBlueGreenSquares.js: -------------------------------------------------------------------------------- 1 | // Go to the link below 👇 2 | 3 | // https://replit.com/@cleverprogrammer/DOM-Manipulation-Lesson#index.html -------------------------------------------------------------------------------- /notes/variables.js: -------------------------------------------------------------------------------- 1 | name = 'Peter Pan' 2 | console.log(name) 3 | 4 | sentence = 'how are you doing today, nice to see you, hope you have a great day!' -------------------------------------------------------------------------------- /functions/sum/solution/index.html: -------------------------------------------------------------------------------- 1 |
2 |