es-18

PHOTO EMBED

Wed Oct 12 2022 02:09:30 GMT+0000 (Coordinated Universal Time)

Saved by @Vrushabh_123

const restExample = (a, ...rest) => {
  console.log(a, rest)
}

console.log(restExample(2, 3, 4, 5, 6, 7, 8, 9, 10))
content_copyCOPY