DOM 반복


$('div').find('li').each(function (index,element) {
	
})

Object 반복


const a = { name : "홍길동" , age : 30 }

$.each(a, function(index,value) {

})

배열 반복


const a = [1,2];

$.each(a, function(index,value) {

})