Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created January 6, 2014 16:15
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 khannedy/def6cd0fdf98e8f546d0 to your computer and use it in GitHub Desktop.
Save khannedy/def6cd0fdf98e8f546d0 to your computer and use it in GitHub Desktop.
function printDetailJenisKelamin(jenisKelamin){
if (jenisKelamin == "P") {
console.log("Wanita");
} else if (jenisKelamin == "L") {
console.log("Pria");
} else {
console.log("Bencong :P");
}
}
printDetailJenisKelamin("L");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment