Code Snippets

All Snippets

The latest code snippets.

Debounce Function in JS

Classic debounce — delay invoking fn until X ms after the last call.

Author: chris

Array map/filter/reduce

Compose map, filter, and reduce to transform a list of numbers.

Author: chris

Regex with Match Groups

Use named capture groups with the /g flag and matchAll.

Author: chris

Parse and Stringify JSON

Safely round-trip JSON with JSON.parse and JSON.stringify.

Author: chris