Created
May 19, 2018 17:18
-
-
Save khg0712/dd37fc9ab5a21580c26a6af8e2429ed1 to your computer and use it in GitHub Desktop.
자바스크립트 함수의 특성 예시
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function average(arg1, arg2, arg3) { | |
return (arg1 + arg2 + arg3)/3; | |
} | |
average(1);//NaN | |
average(1,2);//NaN | |
average(1,2,3);//2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment