/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function concatObject(obj) { str=''; for(prop in obj) { str+=prop + " value :"+ obj[prop]+"\n"; } return(str); }