Skip to content
Snippets Groups Projects
ageRange.js 353 B
Newer Older
module.exports = function ageRange(id) {
    switch (id) {
        case 1:
        return '0-3';
        return '4-5';
        case 3:
        return '6-10';
        return '11-14';
        case 5:
        return '15-17';
        return '18-24';
        default:
        return 'Não declarada';
    }
};