I wonder if minifyed Javascript files are smaller when semicolons are omitted in the original file? After reading the following sources, my guess is the minifyer will automatically add a character (typ. a semi comma) to ensure the code still work after being minifyed.
Asked
Active
Viewed 51 times
3
-
1You're basically just replacing a newline by a semicolon. Both characters are one byte. – Bergi Jan 18 '20 at 05:01