Newer
Older
module.exports = function ageRange(id) {
switch (id) {
return '11-14';
case 5:
return '15-17';
default:
return 'Não declarada';
}
};
module.exports = function ageRange(id) {
switch (id) {
return '11-14';
case 5:
return '15-17';
default:
return 'Não declarada';
}
};