Comment Re:my experience too (Score 1) 56
Hi - thanks for this thoughtful response.
I do like the flexibility of Javascript-like languages - e.g. that one can just add an attribute to any object. But one pays for that:
I am working on a pure Javascript front end with a Java back end at the moment, and whenever I have to make changes to an object that needs to pass between the two, it is a real headache on the Javascript side - there is no compiler to find all the places where I used the object based on its old definition...
So pros and cons.