const a = {"abc": 123};
const b = {
  ...a,
  "hello": "world"
}
What's wrong with this syntax? tried it in babelio got unexpected token.
const a = {"abc": 123};
const b = {
  ...a,
  "hello": "world"
}
What's wrong with this syntax? tried it in babelio got unexpected token.
