In the example they have<p>> const urlstring = "this is not a URL";<p>> const not_a_url = URL.canParse(urlstring) && new URL(urlstring);<p>Why would you need the latter part of the condition? Couldn't it just be this?<p>> const isValidURL = URL.canParse(urlstring);