[프로그래머스/js] 나머지 구하기

2023. 3. 24. 15:07코딩 테스트(Coding Test)/프로그래머스

나의 풀이

function solution(num1, num2) {
    var res = num1%num2;
    return res;
}