devicescript icon indicating copy to clipboard operation
devicescript copied to clipboard

implement array/object de-structuring in assignments

Open mmoskal opened this issue 2 years ago • 0 comments

Right now, they are only allowed in const/let definitions and function arguments.

let x = 0,
    y = 1
;({ x, y } = { x: 17, y: 11 })
;[x, y] = [7, 8]

mmoskal avatar Apr 11 '23 20:04 mmoskal