const [...a,] = []; const {...b,} = {}; let c, d; ([...c,] = []); ({...d,} = {}); // Allowed for non-rest elements const [e,] = []; const {f,} = {}; let g, h; ([g,] = []); ({h,} = {});