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/@kindrid/Wiseperson-generator-drill | |
| https://repl.it/@kindrid/shouter-drill | |
| https://repl.it/@kindrid/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/@kindrid/area-of-a-rectangle-drill | |
| https://repl.it/@kindrid/temperature-conversion-drill | |
| https://repl.it/@kindrid/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/@kindrid/Traffic-lights-drill | |
| https://repl.it/@kindrid/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/@kindrid/Creating-arrays-drill | |
| https://repl.it/@kindrid/Adding-array-items-drills | |
| https://repl.it/@kindrid/Accessing-array-items-drill | |
| https://repl.it/@kindrid/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/@kindrid/Array-copying-I-drill | |
| https://repl.it/@kindrid/Array-copying-II-drill | |
| https://repl.it/@kindrid/Squares-with-map-drill | |
| https://repl.it/@kindrid/Sort-drill | |
| https://repl.it/@kindrid/Filter-drill | |
| https://repl.it/@kindrid/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/@kindrid/min-and-max-without-sort-drill | |
| https://repl.it/@kindrid/average-drill | |
| https://repl.it/@kindrid/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? Your explanation should include the idea of global vs. block scope | |
| Every variable, and constant, has scope: rules that define where in the code a program will be able | |
| to access the variable's value. Where the variable is defined usually determines its scope. A global | |
| variable will have global scope: every section of the program will have access to that variable's | |
| value. Variables declared without a variable or constant keyword will also have global scope (see the | |
| answer to question 3 for more details). Variables defined elsewhere usually have block scope: only the | |
| parts of the program that are within the variables "block" of code, e.g. a function or loop, will be | |
| able to access the variable's value. Variables defined using the var keyword have some different rules | |
| for their scope; see the answer to question 3 for more details. |
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/@kindrid/Object-creator-drill | |
| https://repl.it/@kindrid/Object-updater-drill | |
| https://repl.it/@kindrid/Self-reference-drill | |
| https://repl.it/@kindrid/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/@kindrid/most-frequent-word-analyzer-challenge |
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
| // User story 1: Add items | |
| function handleNewItemSubmit() { | |
| //When a submit event occurs in the form with the "Add item" button, do the following: | |
| // prevent the default behavior of the button | |
| // grab the value of the form's input field and store it | |
| // create an object to store the input value in, and include the other keys/values that are present in the other objects in the STORE global variable | |
| // add the object to the STORE global variable | |
| // Render the shopping list | |
| } |
OlderNewer