js object 대상 인쇄 방법

420 단어

js object 대상 인쇄 방법
function writeObj(obj){ 
 var description = ""; 
 for(var i in obj){ 
  var property=obj[i]; 
  description+=i+" = "+property+"
"; } alert(description); }

좋은 웹페이지 즐겨찾기