In Chrome: ```js Object.prototype.toString.call( new URL("http://domain.com/") ) //-> [object URL] ``` In Node: ```js const URL = require("url").URL; Object.prototype.toString.call( new URL("http://domain.com/") ) //-> [object Object] ``` @jasnell