swc/crates/swc_estree_compat/tests/fixtures/array-destructuring/input.js

3 lines
57 B
JavaScript
Raw Normal View History

const arr = [ 1, 2, 3 ];
const [ a, b, ...other ] = arr;