function sortProperties(obj) { // convert object into array var sortable=[]; for(var key in obj) if(obj.hasOwnProperty(key)) sortable.push([ ...
確定! 回上一頁