Created
October 5, 2016 21:29
-
-
Save wagnerdevel/d450d7487e629bd715ec030ee2f325a2 to your computer and use it in GitHub Desktop.
for-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
| var palavras = ["URI", "SI"]; | |
| for (var i = 0; i < palavras.length; i++) { | |
| alert(palavras[i]); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment