| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Errors/Missing_bracket_after_list | [Back] [Original] |
Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
SyntaxError: missing ] after element list
. , ("]") (",").
var list = [1, 2,
var instruments = [
'',
'',
''
};
var data = [{foo: 'bar'} {bar: 'foo'}];
:
var list = [1, 2];
var instruments = ["", "", ""];
var data = [{ foo: "bar" }, { bar: "foo" }];
This page was last modified on 7 . 2023 . by MDN contributors.
Your blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |