Created
March 24, 2021 04:31
-
-
Save pablotolentino/6cd091882312958c0b60b7795c22b89e to your computer and use it in GitHub Desktop.
días en mayusculas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dias = ['lunes','martes','miércoles','jueves','viernes']; | |
var diasMayusculas = dias.map(function(dia){ | |
return dia.toUpperCase(); | |
}); | |
console.log(diasMayusculas); //resultado: ["LUNES", "MARTES", "MIÉRCOLES", "JUEVES", "VIERNES"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment