DEV Community

Cover image for Learn the Ins and Outs of JavaScript's Reduce
codingcardio
codingcardio

Posted on

 

Learn the Ins and Outs of JavaScript's Reduce

This video will walk through some basic reduce patterns and show use cases for when to use a reduce in a real project. We'll also do some debugging as we use reduce.

Feedback welcome!

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!