Node.js - URL and Query String Handling
What will this code print?
const url = new URL('https://example.com/path?search=books');
url.searchParams.delete('search');
console.log(url.href);