This probably means that you’ve got a trailing comma after an object/hash definition:
var myObj = {
key0: 'val0',
key1: 'val1',
key2: 'val2', // â†
}; // ↑
You’re on your own for trying to figure out which file it’s talking about and translating the line number into the correct value.