javascript print_r


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function print_r(theObj){
  2. if(theObj.constructor == Array ||
  3. theObj.constructor == Object){
  4. document.write("<ul>");
  5. for(var p in theObj){
  6. if(theObj[p].constructor == Array||
  7. theObj[p].constructor == Object){
  8. document.write("<li>["+p+"] => "+typeof(theObj)+"</li>");
  9. document.write("<ul>");
  10. print_r(theObj[p]);
  11. document.write("</ul>");
  12. } else {
  13. document.write("<li>["+p+"] => "+theObj[p]+"</li>");
  14. }
  15. }
  16. document.write("</ul>");
  17. }
  18. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.