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:
| // 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 { |
| // 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!"; | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "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", |