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

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

나의 풀이

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