o={a: 1, b: 2} a=[]; b=[] for(i in o){a.push(i); b.push(o[i])} alert([a,b]) // [ [ 'a', 'b' ], [ 1, 2 ] ]