|
|
|
|
|
by inimino
6415 days ago
|
|
I've written JavaScript sans semicolons for years and have not encountered incorrect parsing by any browser. I find this style cleaner and easier on the eyes. I haven't done any testing regarding parsing speed, but I would be shocked if anyone can demonstrate a measurable speed difference in a realistic testing scenario. |
|
Yes, neither have I - but then I'm doing fairly simple stuff. I do test across a fairly broad range of browsers, though.
I find this style cleaner and easier on the eyes.
I'm glad I've found at least one kindred spirit in this regard! I was beginning to think I was the only one.
I haven't done any testing regarding parsing speed, but I would be shocked if anyone can demonstrate a measurable speed difference in a realistic testing scenario.
Perhaps with very, very large and complex code if the JavaScript engine uses an old-style interpreter? But surely the problem will continue to diminish away to nothing as more JavaScript engines implement efficient compilation.