var expires = new Date(); expires.setTime(expires.getTime() + (1000 * 3600 * 24 * 30)); setCookie("myCookie", expires.toString(), expires.toUTCString()); Which statements are valid for the above code: Choose all that are applicable.
A cookie by Name cookie-myCookie is created.
The cookie will expire exactly 15 days from the time it is created.
The cookie will expire exactly 30 days from the time it is created.
A cookie by Name myCookie is created.
Since the setTime function will fail, the cookie will never expire.