Node.js - URL and Query String Handling
Given the code below, what will
console.log(myUrl.searchParams.get('id')) output?const myUrl = new URL('https://site.com/page?name=bob&id=123&ref=abc');