MSNCodeSNIPPETS← msncode.dev
snippets/javascript

Parse Query Params to Object

Convert URL query string to an object

javascriptjavascripturlparams
JAVASCRIPT
Object.fromEntries(new URLSearchParams(window.location.search));

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)