MSNCodeSNIPPETS← msncode.dev
snippets/javascript

Group Array by Property

Group array items by a property value

javascriptjavascriptgrouparray
JAVASCRIPT
const grouped = Object.groupBy(arr, item => item.category);

More javascript snippets

Capitalize First Letter

Capitalize the first character of a string

Copy to Clipboard

Copy text to the user's clipboard using the Clipboard API

Debounce a Function

Delay function execution until user stops typing

Deep Clone an Object

Deep copy an object (works for JSON-serializable data)