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

2023. 3. 24. 15:12Coding Test/프로그래머스

나의 풀이

function solution(num1, num2) {return num1*num2;}