Some characters in javascript are treated as blank char, including space(0x20), table(0x09), enter(0x0D,0x0A).
Blank char is used to make the code for reading and understanding. If insert a blank char into a token(keyword, variable, number), then the token is seperated to 2 parts, not one token, sometimes it causes an error.
Semicolon is used to end one sentence, like:
a = 1;
b = 2;






