1function foo() { 2 let obj = { 3 _times: "aaaa", 4 _values: "bbbb", 5 _xxx: "cccc", 6 _yyy: "dddd", 7 _zzz: "eeee" 8 } 9 10 const {_times: times, _values: values, ...others} = obj; 11 12 for (let prop in others) { 13 print("key: ", prop); 14 print("value: ", others[prop]) 15 } 16} 17foo()