function toPairs(obj){ let result = []; for(const key in obj){ result.push([key,obj[key]]) } return result; } console.log(toPairs({a:1,b:2}))