Three dots ... is one of the favorites for JavaScript developers as it has a lot of use cases which makes their life easier.
Well, you can see thi...
For further actions, you may consider blocking this person and/or reporting abuse
Cool! Another great example for rest usage is when you want to create a new object based on a existing one while excluding specific properties:
const {password, ...userWithoutPassword} = user;