Vidyalelo
JavaScript · Q139

Document Object Model And Event Handling

Programming · JavaScript · question 139

Q139

Which of the following function is used as a consequence of not including semicolons, commas or whitespace in the Cookie value?

A.
encodeURIComponent()
Answer
B.
encodeURI()
C.
encodeComponent()
D.
none of the mentioned

Answer: Option A

Solution

Answer: Option A
Solution:
Cookie values cannot include semicolons, commas, or whitespace. For this reason, you may want to use the core JavaScript global function encodeURIComponent() to encode the value before storing it in the cookie.