Skip to content

Instantly share code, notes, and snippets.

View johnayoung's full-sized avatar

John Young johnayoung

View GitHub Profile
1. What do you already know about your communication style and skills?
---------------------------------------------------------------------------
While working in my previous organization, feedback was a very valuable and heavily used form of communication.
Knowing both how to give feedback, but also to receive feedback was a skill they taught early and often.
2. What did you learn while reading this?
----------------------------------------------
I sometimes struggle with proper conflict resolution, and having a conflict resolution framework is very valuable.
Wiseperson generator
https://repl.it/@johnatspreadstr/Wiseperson-generator-drill
Shouter
https://repl.it/@johnatspreadstr/shouter-drill
Text Normalizer
https://repl.it/@johnatspreadstr/text-normalizer-drill
Area of a rectangle
https://repl.it/@johnatspreadstr/area-of-a-rectangle-drill
Temperature conversion
https://repl.it/@johnatspreadstr/temperature-conversion-drill
Is divisible
https://repl.it/@johnatspreadstr/Is-divisible-drill
Traffic lights drill
https://repl.it/@johnatspreadstr/Traffic-lights-drill
Error alert drill
https://repl.it/@johnatspreadstr/Error-alert-drill
Creating arrays drill
https://repl.it/@johnatspreadstr/Creating-arrays-drill
Adding array items drills
https://repl.it/@johnatspreadstr/Adding-array-items-drills
Accessing array items drill
https://repl.it/@johnatspreadstr/Accessing-array-items-drill
Array length and access drill
Array copying 1 drill
https://repl.it/@johnatspreadstr/Array-copying-I-drill
Array copying 2 drill
https://repl.it/@johnatspreadstr/Array-copying-II-drill
Squares with map drill
https://repl.it/@johnatspreadstr/Squares-with-map-drill
Sort drill
min and max (without sort) drill
https://repl.it/@johnatspreadstr/min-and-max-without-sort-drill
average drill
https://repl.it/@johnatspreadstr/average-drill
fizzbuzz drill js
https://repl.it/@johnatspreadstr/fizzbuzz-drill-js

What is scope? Your explanation should include the idea of global vs. local scope.

Scope determines the level at which variables can be accessed and modified. Scope is determined by the scope chain, which is the standard for determining the scope of variables.

Local scope refers to the lowest level of the scope chain, and typically refers to block level (ie, inside levels of a function. Global scope refers to the highest level of the scope chain, and can be accessed across not only the current file, but all files across the app.

Why are global variables avoided?