Hello, can someone please tell me what this means in javascript? Quote: expires = expires * 1000 * 3600 * 24; Thank you very much!
There you are assigning the value for 'expires' to: (its previous value) x 1000 x 3600 x 24. Presumably the previous value is in 'how many thousand days', and that line of code is converting it to number of seconds.