Why does Aptana with either validator (Mozilla or JSlint) complain about this code:
var collectionOfValues = {
key0 : value0;
key1 : value1;
key2 : value2;
};
It works fine with , but not with ;
Even code from The Good Parts won't validate:
var myObject = {
value: 0;
increment: function (inc) {
this.value += typeof inc === 'number' ? inc : 1;
}
};