Javascript is in fact a nice language if it were not for the dom api discrepancies and bugs in browsers, which is somehow getting better now. Having developed using swing, gtk and the html/css/javascript stack, I find the later the best:
- development cycle is easy and the tools are there,
- with html and javascript you already have view and controller enforced,
- css is way more flexible then having to spec all padding and margins in code,
- graphical designer can focus on ui design, you focus on code.
2 years ago I was cursing against it but now, with html 5, they're actually making developers life simpler. There is still the problem that you have to design the look of your application while using toolkits you don't have to but then there exists design that you can reuse and it might also be considered as a plus by some.
Posted Oct 17, 2012 11:41 UTC (Wed) by nye (guest, #51576)
[Link]
>Javascript is in fact a nice language if it were not for the dom api discrepancies and bugs in browsers
I generally agree that JS gets a bad rap, but there are problems with it that go beyond problems with any particular implementation - some part of the language itself are distressingly bad.
The exact behaviour of its semicolon insertion, in particular, is unforgivable.
Wayland and Weston 0.99.0 snapshots released
Posted Oct 19, 2012 8:10 UTC (Fri) by jezuch (subscriber, #52988)
[Link]
> The exact behaviour of its semicolon insertion, in particular, is unforgivable.
I don't know. I never had to think about it while writing code. For me this means that it's rather decent.
Much, much, MUCH worse is how all numbers are half-float, half-integer (with limited precision, IIRC). That's just... unspeakable.
But, other than that, I rather like this little bugger.