@@ -529,7 +529,8 @@ The `URLSearchParams` object provides read and write access to the query of a
529
529
four following constructors.
530
530
531
531
``` js
532
- const URL = require (' url' ).URL ;
532
+ const { URL , URLSearchParams } = require (' url' );
533
+
533
534
const myURL = new URL (' https://example.org/?abc=123' );
534
535
console .log (myURL .searchParams .get (' abc' ));
535
536
// Prints 123
@@ -542,6 +543,24 @@ myURL.searchParams.delete('abc');
542
543
myURL .searchParams .set (' a' , ' b' );
543
544
console .log (myURL .href );
544
545
// Prints https://example.org/?a=b
546
+
547
+ const newSearchParams = new URLSearchParams (myURL .searchParams );
548
+ // The above is equivalent to
549
+ // const newSearchParams = new URLSearchParams(myURL.search);
550
+
551
+ newSearchParams .append (' a' , ' c' );
552
+ console .log (myURL .href );
553
+ // Prints https://example.org/?a=b
554
+ console .log (newSearchParams .toString ());
555
+ // Prints a=b&a=c
556
+
557
+ // newSearchParams.toString() is implicitly called
558
+ myURL .search = newSearchParams;
559
+ console .log (myURL .href );
560
+ // Prints https://example.org/?a=b&a=c
561
+ newSearchParams .delete (' a' );
562
+ console .log (myURL .href );
563
+ // Prints https://example.org/?a=b&a=c
545
564
```
546
565
547
566
#### Constructor: new URLSearchParams()
0 commit comments