-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringStatusGenderCheck.js
More file actions
15 lines (11 loc) · 1.04 KB
/
stringStatusGenderCheck.js
File metadata and controls
15 lines (11 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*The male gametes or sperm cells in humans and other mammals are heterogametic and contain one of two types of sex chromosomes. They are either X or Y. The female gametes or eggs however, contain only the X sex chromosome and are homogametic.
The sperm cell determines the sex of an individual in this case. If a sperm cell containing an X chromosome fertilizes an egg, the resulting zygote will be XX or female. If the sperm cell contains a Y chromosome, then the resulting zygote will be XY or male.
Determine if the sex of the offspring will be male or female based on the X or Y chromosome present in the male's sperm.
If the sperm contains the X chromosome, return "Congratulations! You're going to have a daughter."; If the sperm contains the Y chromosome, return "Congratulations! You're going to have a son.";*/
function chromosomeCheck(sperm) {
let results = ''
if (sperm == "XY")
return results = "Congratulations! You're going to have a son."
else
return results = "Congratulations! You're going to have a daughter."
}