Cannot read property 'push' of undefined when combining arrays

前端 未结 8 2099
轮回少年
轮回少年 2021-02-01 12:18

When pushing an array\'s contents to another array I get

\"Uncaught TypeError: Cannot read property \'push\' of undefined\" error in this snippet.

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-01 12:37

    order[] is undefined that's why

    Just define order[1]...[n] to = some value

    this should fix it

提交回复
热议问题