A Pen by Muhammed Erdem on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@GianinaSkarlett/Object-creator-drill-2 | |
| https://repl.it/@GianinaSkarlett/Object-updater-drill-1 | |
| https://repl.it/@GianinaSkarlett/Self-reference-drill-1 | |
| https://repl.it/@GianinaSkarlett/Deleting-keys-drill-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Scope and the problem with globals | |
| A scope defines how a declared variable can or cannot be accessed at different places in our code. The reason we want to understand scopes it’s because it’ll give us a better understanding of our code and how to avoid bugs. Scopes have two types, global scope and block scopes. | |
| The first, global scope is a variable that is declared outside of a function in JavaScript. Global scopes can also expand across files as long as the file with the declared scope loads first. Global scopes are usually used when using a JavaScript library. The problem with global scopes is that they tend to make unintended side effects in a program which causes the code to inadvertently change the outside in order to carry out instructions which causes an indeterminate function which given a single set of inputs sometimes returns one value and another at other times which leads to hard-to-track bugs in our code. Global scopes are to be avoided unless we actually have a particular reason to use them. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@GianinaSkarlett/Make-student-reports-drill-2 | |
| https://repl.it/@GianinaSkarlett/Enroll-in-summer-school-drill-1 | |
| https://repl.it/@GianinaSkarlett/find-by-id-drill-1 | |
| https://repl.it/@GianinaSkarlett/validate-object-keys-drill-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@GianinaSkarlett/Cat-carousel-jQuery-3 | |
| https://repl.it/@GianinaSkarlett/return-of-fizz-buzz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@GianinaSkarlett/Shopping-list-app-jQuery-3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://docs.google.com/document/d/1Q89duHQptEMnA4IXkjkPeDNnQy5fFYJ2yRk-ck3ifcU/edit?usp=sharing | |
| https://docs.google.com/drawings/d/17SJah7cu5n6kU5WHCchUFHA6zHOuRwj8XbD6T2ThqdQ/edit?usp=sharing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://docs.google.com/document/d/1utq5m2lIUUkstf42KeHFELGo4-BxsEKXP7OXK4Vhft0/edit?usp=sharing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://repl.it/@GianinaSkarlett/DISPLAY-MULTIPLE-RANDOM-DOG-IMAGES | |
| https://repl.it/@GianinaSkarlett/DISPLAY-MULTIPLE-RANDOM-DOG-IMAGES-MVP | |
| https://repl.it/@GianinaSkarlett/Display-Random-Image-from-a-Dog-Breed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Idea 2: Popular Flights Destination and hike trails | |
| Help users search for flights and/or track popular flights destination by month, week or 48 hours. Help users search for hiking trails in the destination they’ve chosen or where they’re thinking about going. |
OlderNewer