Coding Test/프로그래머스
[프로그래머스/js] 두 수의 곱
danii0110
2023. 3. 24. 15:12
나의 풀이
function solution(num1, num2) {return num1*num2;}