Skip to content
Snippets Groups Projects
educationLevelBasic.js 403 B
Newer Older
Fernando Erd's avatar
Fernando Erd committed
module.exports = function educationLevelBasic(id) {
    switch (id) {
        case 1:
        return 'Creche';
        case 2:
        return 'Pré-Escola';
        case 4:
        return 'Ensino Fundamental - anos iniciais';
        case 5:
        return 'Ensino Fundamental - anos finais';
        case 6:
        return 'Ensino Médio';
        default:
        return 'Não classificada';
    }
};