Created
July 31, 2014 17:01
-
-
Save Bijesse/ab8dbf5f242abbc409f3 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>for loop count</title> | |
</head> | |
<body> | |
</body> | |
</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
var fruits=["banana", "watermelon", "apple"]; | |
for (var i=0; i<fruits.length; i=i+1) | |
{ | |
console.log(fruits[i]); | |
} | |
console.log("loop terminated"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment