개발자의 끄적끄적..🥳
var drawList = ['1','2','3','1','2','5']; drawList = Array.from(new Set(drawList)); 결과 : drawList = ['1', '2', '3', '5'];