Javascript grief
The single most annoying feature of javascript is that the following code does not do what one (who'd spent some time coding in perl, python or the like) would expect:
For (var member in array) { stuff }
That's why they recently came up array.forEach
I wonder whether there exists some mental calistenics, some branch of yoga, that allows one to switch easily from one programming language to another.
Comments