SyntaxError: missing ] after element list

Message

SyntaxError: missing ] after element list

Error type

SyntaxError.

What went wrong?

There is an error with the array initializer syntax somewhere. Likely there is a closing bracket ("]") or a comma (",") missing.

Examples

Incomplete array initializer

var list = [1, 2,
var instruments = [
  'Ukulele',
  'Guitar',
  'Piano'
};
var data = [{foo: 'bar'} {bar: 'foo'}];

Correct would be:

var list = [1, 2];
var instruments = [
 'Ukulele',
 'Guitar',
 'Piano'
]; 
var data = [{foo: 'bar'}, {bar: 'foo'}];

See also

Document Tags and Contributors

 Contributors to this page: nmve, fscholz
 Last updated by: nmve,