Skip to content

Instantly share code, notes, and snippets.

View KindredPrime's full-sized avatar

Ken Wright KindredPrime

  • Chantilly, VA
View GitHub Profile
@KindredPrime
KindredPrime / StringDrills.txt
Created April 1, 2020 18:56
String drills from Thinkful Module 5, Checkpoint 6
https://repl.it/@kindrid/Wiseperson-generator-drill
https://repl.it/@kindrid/shouter-drill
https://repl.it/@kindrid/text-normalizer-drill
@KindredPrime
KindredPrime / NumberDrills.txt
Created April 2, 2020 14:47
Number drills from Thinkful Module 5, Checkpoint 7
https://repl.it/@kindrid/area-of-a-rectangle-drill
https://repl.it/@kindrid/temperature-conversion-drill
https://repl.it/@kindrid/Is-divisible-drill
@KindredPrime
KindredPrime / ApplicationLogicDrills.txt
Created April 2, 2020 15:34
Application logic drills from Thinkful's Module 5, Checkpoint 8
https://repl.it/@kindrid/Traffic-lights-drill
https://repl.it/@kindrid/Error-alert-drill
@KindredPrime
KindredPrime / ArrayBasicsDrills.txt
Created April 3, 2020 17:33
Array basics drills from Thinkful's Module 5, Checkpoint 9
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
@KindredPrime
KindredPrime / ArrayMethodDrills.txt
Created April 3, 2020 17:35
Array method drills from Thinkful's Module 5, Checkpoint 9
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
@KindredPrime
KindredPrime / LoopArrayDrills.txt
Last active April 4, 2020 17:53
Loop and array drills from Thinkful's Module 5, Checkpoint 10
https://repl.it/@kindrid/min-and-max-without-sort-drill
https://repl.it/@kindrid/average-drill
https://repl.it/@kindrid/fizzbuzz-drill-js
@KindredPrime
KindredPrime / VariableScopeQuestions.txt
Last active April 7, 2020 01:09
Questions about variable scope from Thinkful's Module 5, Checkpoint 11
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.
@KindredPrime
KindredPrime / ObjectBasicsDrills.txt
Created April 5, 2020 22:05
Object basics drills from Thinkful's Module 5, Checkpoint 12
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
@KindredPrime
KindredPrime / Grokking.txt
Created April 8, 2020 21:11
A link to my repl.it with my comments for the Grokking assignment from Thinkful's Module 5, Checkpoint 13
https://repl.it/@kindrid/most-frequent-word-analyzer-challenge
@KindredPrime
KindredPrime / shoppingListUserStories.txt
Last active April 21, 2020 18:48
Shopping List User Stories (Pseudocode)
// 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
}