Skip to content

Instantly share code, notes, and snippets.

@jtsoi
Last active August 29, 2015 13:55
Show Gist options
  • Save jtsoi/8728788 to your computer and use it in GitHub Desktop.
Save jtsoi/8728788 to your computer and use it in GitHub Desktop.
var a = arrSzeCol_ctl00_ContentMainPage_ctlSeparateProduct,
result = {},
output = ""
for(var i = 0; i < a.length; i++){
result[""+a[i][0]] = a[i][1];
}
for(var i in result){
console.log("" + i + " " + result[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment