${info.name}
18 |${info.region}
19 |👫${( 20 | +info.population / 1000000 21 | ).toFixed(1)}M people
22 |🗣️${info.languages[0].name}
23 |💰${info.currencies[0].name}
24 |├── 01-Javascript-Fundamentals-Part -1-Section-1 ├── end │ ├── index.html │ └── script.js └── start │ └── index.html ├── 02-Javascript-Fundamentals-Part-2-Section-2 ├── end │ ├── index.html │ └── script.js └── starter │ ├── index.html │ └── script.js ├── 03-Developer-Skills ├── .prettierrc └── starter │ ├── index.html │ └── script.js ├── 04-Guess-My-Number ├── demo │ ├── .prettierrc │ ├── index.html │ ├── script.js │ └── style.css ├── end │ ├── .prettierrc │ ├── index.html │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── index.html │ ├── script.js │ └── style.css ├── 05-Modal-Window ├── end │ ├── .prettierrc │ ├── index.html │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── index.html │ ├── script.js │ └── style.css ├── 06-Dice-Game ├── end │ ├── .prettierrc │ ├── Thumbs.db │ ├── dice-1.png │ ├── dice-2.png │ ├── dice-3.png │ ├── dice-4.png │ ├── dice-5.png │ ├── dice-6.png │ ├── dice-game-flowchart.png │ ├── index.html │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── Thumbs.db │ ├── dice-1.png │ ├── dice-2.png │ ├── dice-3.png │ ├── dice-4.png │ ├── dice-5.png │ ├── dice-6.png │ ├── dice-game-flowchart.png │ ├── index.html │ ├── script.js │ └── style.css ├── 07-Navbar-project assignment- 1 ├── Bounce-Bar-Preloader-1.gif ├── Thumbs.db ├── index.html ├── index.js ├── load.gif ├── logo.svg └── styles.css ├── 08-Sidebar-project - assignment-2 ├── index.html ├── index.js ├── logo.svg └── styles.css ├── 09-Behind the Scene ├── final │ ├── index.html │ └── index.js └── start │ ├── index.html │ └── index.js ├── 10-Data-Structures-Operators ├── 10-Data-Structures-Operators │ ├── end │ │ ├── .prettierrc │ │ ├── index.html │ │ └── script.js │ └── starter │ │ ├── .prettierrc │ │ ├── index.html │ │ └── script.js ├── end │ ├── .prettierrc │ ├── index.html │ └── script.js └── starter │ ├── .prettierrc │ ├── index.html │ └── script.js ├── 11-WEEK16-ASSIGNMENT-STARTER FILES ├── index.html ├── script.js └── style.css ├── 12-Closer Look at Functions ├── end │ ├── index.html │ └── script.js └── start │ └── index.html ├── 13-Arrays-Mobile Banking Website ├── final │ ├── .prettierrc │ ├── Bankist-flowchart.png │ ├── icon.png │ ├── index.html │ ├── logo.png │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── Bankist-flowchart.png │ ├── icon.png │ ├── index.html │ ├── logo.png │ ├── script.js │ └── style.css ├── 14-Numbers-Dates-Timers-Mobile Banking Website ├── final │ ├── .prettierrc │ ├── Bankist-flowchart.png │ ├── icon.png │ ├── index.html │ ├── logo.png │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── Bankist-flowchart.png │ ├── icon.png │ ├── index.html │ ├── logo.png │ ├── script.js │ └── style.css ├── 15-Advanced-DOM ├── final │ ├── .prettierrc │ ├── img │ │ ├── Thumbs.db │ │ ├── card-lazy.jpg │ │ ├── card.jpg │ │ ├── digital-lazy.jpg │ │ ├── digital.jpg │ │ ├── grow-lazy.jpg │ │ ├── grow.jpg │ │ ├── hero.png │ │ ├── icon.png │ │ ├── icons.svg │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── img-4.jpg │ │ ├── logo.png │ │ ├── user-1.png │ │ ├── user-2.png │ │ └── user-3.png │ ├── index.html │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── img │ ├── Thumbs.db │ ├── card-lazy.jpg │ ├── card.jpg │ ├── digital-lazy.jpg │ ├── digital.jpg │ ├── grow-lazy.jpg │ ├── grow.jpg │ ├── hero.png │ ├── icon.png │ ├── icons.svg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── logo.png │ ├── user-1.png │ ├── user-2.png │ └── user-3.png │ ├── index.html │ ├── script.js │ └── style.css ├── 16-OOP ├── final │ ├── .prettierrc │ ├── index.html │ └── script.js └── starter │ ├── .prettierrc │ ├── index.html │ └── script.js ├── 17-Asynchronous ├── final │ ├── .prettierrc │ ├── img │ │ ├── Thumbs.db │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ └── img-3.jpg │ ├── index.html │ ├── script.js │ └── style.css └── starter │ ├── .prettierrc │ ├── img │ ├── Thumbs.db │ ├── img-1.jpg │ ├── img-2.jpg │ └── img-3.jpg │ ├── index.html │ ├── script.js │ └── style.css └── CODING CHALLENGE 1 - SECTION 7.pdf /01-Javascript-Fundamentals-Part -1-Section-1/end/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |(Between 1 and 20)
14 | 15 |💯 Score: 20
25 |26 | 🥇 Highscore: 0 27 |
28 |(Between 1 and 20)
14 | 15 |💯 Score: 20
25 |26 | 🥇 Highscore: 0 27 |
28 |(Between 1 and 20)
14 | 15 |💯 Score: 20
25 |26 | 🥇 Highscore: 0 27 |
28 |53
15 |Current
17 |0
18 |24
23 |Current
25 |0
26 |43
15 |Current
17 |0
18 |24
23 |Current
25 |0
26 |Current balance
44 |45 | As of 11/11/2030 46 |
47 |0000 ₦
49 |In
70 |0000 ₦
71 |Out
72 |0000 ₦
73 |Interest
74 |0000 ₦
75 | 76 |118 | You will be logged out in 05:00 119 |
120 |Current balance
44 |45 | As of 11/11/2030 46 |
47 |0000 ₦
49 |In
70 |0000 ₦
71 |Out
72 |0000 ₦
73 |Interest
74 |0000 ₦
75 | 76 |118 | You will be logged out in 05:00 119 |
120 |Current balance
44 |45 | As of 11/11/2030 46 |
47 |0000 ₦
49 |In
70 |0000 ₦
71 |Out
72 |0000 ₦
73 |Interest
74 |0000 ₦
75 | 76 |118 | You will be logged out in 05:00 119 |
120 |Current balance
44 |45 | As of 11/11/2030 46 |
47 |0000 ₦
49 |In
70 |0000 ₦
71 |Out
72 |0000 ₦
73 |Interest
74 |0000 ₦
75 | 76 |118 | You will be logged out in 05:00 119 |
120 |82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Unde alias 83 | sint quos? Accusantium a fugiat porro reiciendis saepe quibusdam 84 | debitis ducimus. 85 |
86 |96 | Nesciunt quos autem dolorum voluptates cum dolores dicta fuga 97 | inventore ab? Nulla incidunt eius numquam sequi iste pariatur 98 | quibusdam! 99 |
100 |122 | Quasi, fugit in cumque cupiditate reprehenderit debitis animi enim 123 | eveniet consequatur odit quam quos possimus assumenda dicta fuga 124 | inventore ab. 125 |
126 |165 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do 166 | eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim 167 | ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut 168 | aliquip ex ea commodo consequat. 169 |
170 |182 | Duis aute irure dolor in reprehenderit in voluptate velit esse 183 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat 184 | cupidatat non proident, sunt in culpa qui officia deserunt mollit 185 | anim id est laborum. 186 |
187 |198 | Excepteur sint occaecat cupidatat non proident, sunt in culpa qui 199 | officia deserunt mollit anim id est laborum. Ut enim ad minim 200 | veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 201 | ea commodo consequat. 202 |
203 |👫${( 20 | +info.population / 1000000 21 | ).toFixed(1)}M people
22 |🗣️${info.languages[0].name}
23 |💰${info.currencies[0].name}
24 |