This file contains 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/@RyanOkamuro/Wiseperson-generator-drill | |
https://repl.it/@RyanOkamuro/shouter-drill | |
https://repl.it/@RyanOkamuro/text-normalizer-drill |
This file contains 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/@RyanOkamuro/area-of-a-rectangle-drill | |
https://repl.it/@RyanOkamuro/temperature-conversion-drill | |
https://repl.it/@RyanOkamuro/Is-divisible-drill |
This file contains 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/@RyanOkamuro/Traffic-lights-drill | |
https://repl.it/@RyanOkamuro/Error-alert-drill |
This file contains 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/@RyanOkamuro/Creating-arrays-drill | |
https://repl.it/@RyanOkamuro/Adding-array-items-drills | |
https://repl.it/@RyanOkamuro/Accessing-array-items-drill | |
https://repl.it/@RyanOkamuro/Array-length-and-access-drill |
This file contains 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/@RyanOkamuro/Array-copying-I-drill | |
https://repl.it/@RyanOkamuro/Array-copying-II-drill | |
https://repl.it/@RyanOkamuro/Squares-with-map-drill | |
https://repl.it/@RyanOkamuro/Sort-drill | |
https://repl.it/@RyanOkamuro/Filter-drill | |
https://repl.it/@RyanOkamuro/Find-drill |
This file contains 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
What is scope? Your explanation should include the idea of global vs. local scope. | |
Scope determines whether or not you want the selected variables to be affected by the code you write. Global scope refers to all the variables you write will be affected by your code. Local scope refers to only a "selected" variables/block/part will be affected by the code as opposed to affecting every variable. | |
Why are global variables avoided? | |
They may result in unintended side affects or indeterminate coding. Uninteded side affects occur when other variables are affected other than the ones you specified. Indeterminate coding occurs when sometimes you receive the correct output for your input but at other times receive another output. | |
Explain JavaScript's strict mode | |
When defining a variable, it must use "let or const" to specify the scope. In strict mode, an error message will occur to remind the user to use "let or const" if they obmit these words when defining at variable. | |
----What does this mean: | |
This file contains 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/@RyanOkamuro/min-and-max-without-sort-drill | |
https://repl.it/@RyanOkamuro/average-drill | |
https://repl.it/@RyanOkamuro/fizzbuzz-drill-js |
This file contains 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/@RyanOkamuro/Object-creator-drill | |
https://repl.it/@RyanOkamuro/Object-updater-drill | |
https://repl.it/@RyanOkamuro/Self-reference-drill | |
https://repl.it/@RyanOkamuro/Deleting-keys-drill |
This file contains 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/@RyanOkamuro/Make-student-reports-drill | |
https://repl.it/@RyanOkamuro/Enroll-in-summer-school-drill | |
https://repl.it/@RyanOkamuro/find-by-id-drill | |
https://repl.it/@RyanOkamuro/validate-object-keys-drill |
This file contains 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/@RyanOkamuro/most-frequent-word-analyzer-challenge |
OlderNewer