├── 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 ├── functions └── sum │ ├── solution │ ├── script.js │ └── index.html │ └── exercise │ ├── index.html │ └── script.js ├── style.css ├── classes └── fightingGame │ ├── exercise │ ├── style.css │ ├── index.html │ └── script.js │ └── solution │ ├── style.css │ ├── index.html │ └── solution.js ├── replit.nix ├── exercises ├── findMax.js ├── arraysorting.js ├── palindromechecker.js ├── daysinamonth.js ├── converthourstoseconds.js └── savingsstrategy.js ├── dom └── red-yellow-green │ ├── index.html │ └── script.js ├── projects ├── 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 ├── 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 | } -------------------------------------------------------------------------------- /classes/fightingGame/exercise/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: 'red'; 3 | } 4 | 5 | #result { 6 | background:'blue'; 7 | } -------------------------------------------------------------------------------- /classes/fightingGame/solution/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 |