> ## Documentation Index
> Fetch the complete documentation index at: https://adro.codes/llms.txt
> Use this file to discover all available pages before exploring further.

# How to - Merge to SearchURLParams objects

> Learn how to merge multiple URLSearchParams objects.

```ts theme={null}
const a = new URLSearchParams()
const b = new URLSearchParams()

const combined = new URLSearchParams({
	...Object.fromEntries(a),
	...Object.fromEntries(b),
})
```
