Javascript:初始化对象数组时编译错误

时间:2017-11-30 09:21:44

标签: javascript reactjs react-native

我正在尝试声明并初始化名为 graphdata 的对象数组。

const graphdata = [
    {x:"Jan 01", y: 10 },
    {x:"Jan 02", y: 11 },
    {x:"Jan 03", y: 12 },
    {x:"Feb 01", y: 20 },
    {x:"Mar 01", y: 30 }
  ];

它给我一个编译错误Parsing error: Unexpected token (Fatal)

enter image description here

我同时尝试了 const 以及

我认为它们(const或let)对于对象数组没有任何影响,因为内存位置没有变异。

有人能告诉我这个初始化声明有什么问题吗?

0 个答案:

没有答案