mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-04 08:01:51 +00:00
10 lines
280 B
HTML
10 lines
280 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const params = new URLSearchParams('key=value1+value2');
|
|
for (const [key, value] of params) {
|
|
println(`key '${key}'`);
|
|
println(`value '${value}'`);
|
|
}
|
|
});
|
|
</script>
|