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/@kaysway90s/wisePerson | |
| https://repl.it/@kaysway90s/shouterstring-drillsUnit-2Lesson-2Project-3 | |
| https://repl.it/@kaysway90s/text-normalizer-drill |
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/@kaysway90s/area-of-a-rectangle-drill | |
| https://repl.it/@kaysway90s/temperature-conversion-drill | |
| https://repl.it/@kaysway90s/Is-divisible-drill |
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/@kaysway90s/Traffic-lights-drill | |
| https://repl.it/@kaysway90s/Error-alert-drill |
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/@kaysway90s/Creating-arrays-drill | |
| https://repl.it/@kaysway90s/Adding-array-items-drills | |
| https://repl.it/@kaysway90s/Accessing-array-items-drill | |
| https://repl.it/@kaysway90s/Array-length-and-access-drill |
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/@kaysway90s/Array-copying-I-drill | |
| https://repl.it/@kaysway90s/Array-copying-II-drill | |
| https://repl.it/@kaysway90s/Squares-with-map-drill | |
| https://repl.it/@kaysway90s/Sort-drill | |
| https://repl.it/@kaysway90s/Filter-drill | |
| https://repl.it/@kaysway90s/Find-drill |
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/@kaysway90s/min-and-max-without-sort-drill | |
| https://repl.it/@kaysway90s/average-drill | |
| https://repl.it/@kaysway90s/fizzbuzz-drill-js |
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
| What is scope? | |
| Scope is the extent to which a variable is accessible within your code. If a variable is only accessible within its local function | |
| then it has local scope versus if the function can be accessed globally, this means that the function can be accessed anywhere | |
| throughout the entire program and across files. | |
| Why are global variables avoided? | |
| Global variables should be avoided since it is just as easy to access them on accident as it is on purpose. If you are writing | |
| a very short program or function, then you probably know all of your variables and will not accidentally duplicate a global | |
| variable. However, it is generally impractical to use these due to the size of the program and the length of the code required. | |
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/@kaysway90s/Object-creator-drill | |
| https://repl.it/@kaysway90s/Object-updater-drill | |
| https://repl.it/@kaysway90s/Self-reference-drill | |
| https://repl.it/@kaysway90s/Deleting-keys-drill |
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/@kaysway90s/Enroll-in-summer-school-drill | |
| https://repl.it/@kaysway90s/Make-student-reports-drill | |
| https://repl.it/@kaysway90s/find-by-id-drill | |
| https://repl.it/@kaysway90s/validate-object-keys-drill |
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/@kaysway90s/fruitLengthArray | |
| Description for fruitLengthArray: Create a function that returns the total number of items in an array that | |
| have a length of 5 characters or less. | |
| https://repl.it/@kaysway90s/UserAge | |
| Description for UserAge repl: Create a function that returns one of two strings after calculating the age of the user | |
| https://repl.it/@kaysway90s/checkAgesimpleCalc | |
| Description for checkAgesimpleCalc: 3 basic functions |
OlderNewer