javascript 썸네일형 리스트형 [javascript] 배열 중복 삭제 http://stackoverflow.com/questions/9229645/remove-duplicates-from-javascript-array 고수들 코드 대결하는것 같네 ㅋㅋ 더보기 javascript 중복 카운트 1)function run() { var array = document.getElementById("data").value.split(","); var result = {}; array.sort(); for(var value in array) { var index = array[value]; result[index] = result[index] == undefined ? 1 : result[index] += 1; } var table = []; for(var value in result) { table.push("" + value + "" + result[value] + ""); } document.getElementById("output").innerHTML = "값중복개수" + table.join(".. 더보기 이전 1 다음