[프로그래머스] 두 수의 곱

hello__0·2022년 11월 16일
0

Algorithm

목록 보기
2/20

나의 코드

function solution(num1, num2) {
    let answer = 0;
    answer = num1 * num2;
    return answer;
};
profile
자라나라 나무나무

0개의 댓글