I would like to add a comment block (/**/) in the middle of a javascript code for obfuscation reasonds.
I want this: alert(document.cookie);
to look like this: alert(document.co/**/okie);
but adding the comment block makes the code invalid. Why? Is there a way to do this?