Created
April 28, 2016 17:51
-
-
Save outoftime/34e9044027f223f56c00a9879f481423 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=34e9044027f223f56c00a9879f481423
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> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<!-- Put your page markup here --> | |
</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 array = ['tom', 'shane', 'chinnell']; | |
array.forEach(function(name) { | |
console.log('Hi', name); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment