By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
// 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!"; | |
} | |
} |