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