JAVASCRIPT
함수 출력
Made Project
2020. 4. 8. 22:38
function get_arguments(arg1, arg2){
return arg1 + arg2
}
alert(get_arguments(10, 20));
값은 30입니다.