+ 1
Help me please!! JavaScript
Como puedo hacer que una función retorne la primera letra de cada palabra en una frase? Por ejemplo:” Hey, can you help me please! “ y que retorne “Hcyhmp”??
2 Respuestas
+ 3
alert(prompt("Enter a sentence:").split(" ").map(function(word) { return word.charAt(0); }).join(""));
/*
More detail here:
alert(prompt("Enter a sentence:") // to get the input
.split(" ") // to get each word (split by a space)
.map(function(word) {
return word.charAt(0); // for each word, only use the first character
}).join("")); // join the array of first characters
*/
+ 1
thank!!