Last active
October 23, 2018 16:34
-
-
Save chepe263/0052cb30a2ed2653c8eff22ef2d675eb to your computer and use it in GitHub Desktop.
The alphabet as js array
This file contains hidden or 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
abc.forEach(function(e){ | |
html += ` | |
<span class="letra" data-letra="${e}"> | |
${e} | |
</span> | |
`; | |
}); | |
document.getElementById("letras_nombre").innerHTML = html; |
This file contains hidden or 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
abc = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "ñ"]; | |
numbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] | |
/* | |
abc | |
abecedario | |
alphabet | |
the abc | |
numbers from 1 to 10 | |
numbers from one to ten | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment