DEV Community

Discussion on: Start using memoization to reduce computing time in Javascript

Collapse
 
nicholascloud profile image
Nicholas Cloud

Great article -- for those who use lodash, it has a memoize utility function built in, which is quite handy: lodash.com/docs/4.17.15#memoize

Collapse
 
iggredible profile image
Igor Irianto

Good insight! I don't use lodash that often but it's nice knowing it's available when I need something battle-tested.