Re: [whatwg/url] URLSearchParams with repeated parameters (Issue #851)

my reading is that there's no way to create that using `URLSearchParams.prototype.set` (or a non-existant `.setAll`). eg:

```js
let params = new URLSearchParams() 
params.set("q",[1,2]) 
params.toString() // "q=1%2C2"
params.get("q") // "1,2" 
```


-- 
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/url/issues/851#issuecomment-2555511727
You are receiving this because you are subscribed to this thread.

Message ID: <whatwg/url/issues/851/2555511727@github.com>

Received on Thursday, 19 December 2024 18:28:59 UTC