1) border-left-width를 borderLeftWidth로 변경하기 function camelize(str) { return str .split("-") .map((s) => ( s[0].toUpperCase()+s.slice(1) )) .join(''); } 2) 특정 범위에 속하는 요소 찾기 function filterRange(arr, a, b) { let result = []; arr.map((num) => ( (num >= a && num a-b, "+": (a, b) => a+b, }; this.calculate = function(str) { let split = str.split(' '); a = +split[0]; op = split[1]; b = +split[2]; if (i..