Describe the correct syntax for saving the encrypted user password to a cookie named "yourNamePasswordCookie" in a single statement. (Hint: refer to the jquery selector syntax and encryption syntax)
Answer :
SetSecureCookie(secret ,"yourNamePasswordCookie",cookieVal)
This is the single line statement
Describe the correct syntax for saving the encrypted user password to a cookie named "yourNamePasswordCookie" in...