Math.max
, Math.min
에 문자를 넣었을 때는 의도대로 숫자로 변경되어 우리가 원하는 최대, 최소값을 구해준다.두수의곱=최대공약수*최소공배수
를 활용한 문제A.reduce((total, val, idx) => total + val * B[idx], 0)
여기서 total+ 을 안하면 틀린다! 반드시 acc+ 넣어주자string.match(정규식).length
를 통해 문자열에서 정규식을 만족하는 것을 filtering하고, 갯수를 알 수 있다. (array.filter()와 같은 역할)s.toLowerCase().replace(/\b[a-z]/g, letter => letter.toUpperCase())
(A+B)%C=((A%C)+(B%C))%C
for(let j=p-1; j<t*m; j+=m){
answer+=tmp[j];
}