Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seogi1004/98623a6120660bd1e12431cd751a832b to your computer and use it in GitHub Desktop.
Save seogi1004/98623a6120660bd1e12431cd751a832b to your computer and use it in GitHub Desktop.
function isAdult(age) {
if(age > 19) return true;
else return false;
}
function viewMyInfo(name, age) {
if(isAdult(age)) {
return name + "님은 성인이 맞습니다.";
} else {
return name + "님은 성인이 아닙니다.";
}
}
alert(isAdult(26));
alert(viewMyInfo("Moon-Hak-I", 26));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment