Posts by Jones Heckler • 1 point
1 post
-
0
votes6
answers8412
viewsA: Function that enumerates letters of the alphabet
I needed it for a job and I did it in a very simple way I leave it here for those who need help. <script> var x = prompt("digite uma letra"); if (isNaN(x) == false) { alert("nao é uma letra");…