meteorJS
Funciones y métodos para el tratamiento de strings en JavaScript. Contestar las preguntas teniendo en cuenta el siguiente código:var texto = "EXAMEN DE JAVASCRIPT";
var texto = "EXAMEN DE JAVASCRIPT";
texto.toLowerCase()
texto.split(" ")
["EXAMEN", "DE", "JAVASCRIPT"]
texto.charAt(0)