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
{ | |
"basics": { | |
"name": "Brady Dowling", | |
"label": "Software Engineer", | |
"email": "[email protected]", | |
"summary": "Software engineer with a focus on product and UI. I enjoy working in a team, learning from and teaching others, and honing my craft in general.", | |
"location": { | |
"city": "Boston", | |
"countryCode": "US", |
I hereby claim:
- I am bradydowling on github.
- I am bradydowling (https://keybase.io/bradydowling) on keybase.
- I have a public key whose fingerprint is 335E 7F69 72C2 5A97 B104 BC3C 2910 BC3C 2890 0EC9
To claim this, I am signing this object:
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
// Using a function declaration, I cannot assign different values to a variable conditionally. | |
// All declarations will be hoisted to the top of the code and the latest declaration will apply. | |
var day = 'Friday'; | |
if (day === 'Friday') { | |
function myGreeting () { | |
return "Happy Friday!"; | |
} | |
} |
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
// Using a function expression, I can assign different values to a variable conditionally. | |
var day = 'Friday'; | |
if (day === 'Friday') { | |
var myGreeting = function () { | |
return "Happy Friday!"; | |
} | |
} | |
else { |