for문 사용법

JooKit 주킷 2022. 1. 15. 17:03
목차 접기
728x90
반응형
rows.forEach(function(value, index){
	console.log(JSON.stringify(value));
});




for ( index in rows ) {
	console.log(JSON.stringify(rows[index]));
};

 

728x90
반응형
LIST