let messages = {
  1: {
    id: '1',
    text: 'Hello World',
    userId: '1',
  },
  2: {
    id: '2',
    text: 'By World',
    userId: '2',
  },
};
// what does this statement do?
const {
  [1]: message,
  ...otherMessages
} = messages;
console.log("other messages: ", otherMessages);We didn't have a variable otherMessages, so how does the rest syntax work on this variable? What does the above statement do in general, it's somewhat complicated?
 
     
     
    