var jenisKelamin = "L"; | |
if (jenisKelamin == "P") { | |
console.log("Wanita"); | |
} else if (jenisKelamin == "L") { | |
console.log("Pria"); | |
} else { | |
console.log("Bencong :P"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment