Edge: SCRIPT1028: Expected identifier, string or number

前端 未结 4 2047
情话喂你
情话喂你 2020-12-18 19:23

My page works fine in Chrome and Firefox:

However, when I try to load this page in Edge, the questions and answers disappear. Only the categories are posted. Also,

4条回答
  •  渐次进展
    2020-12-18 20:18

    Edge 44 fails with "SCRIPT1028: Expected identifier, string or number" with :

    var a = {};
    a = { ...a};
    

    But succeeded with:

    var a = {};
    a = Object.assign({}, a);
    

提交回复
热议问题