-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
chromosomeCheck.js
13 lines (8 loc) · 954 Bytes
/
chromosomeCheck.js
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
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.";
*/
//Answer//
let chromosomeCheck = sperm => "Congratulations! You're going to have a "+(sperm.includes('Y')?"son.":"daughter.")