Skip to content

Instantly share code, notes, and snippets.

@outoftime
Created April 28, 2016 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save outoftime/1d57f70600376feed5ea59201d14bc95 to your computer and use it in GitHub Desktop.
Save outoftime/1d57f70600376feed5ea59201d14bc95 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=1d57f70600376feed5ea59201d14bc95
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- Put your page markup here -->
</body>
</html>
var array = ['tom', 'shane', 'chinnell'];
array.forEach(function(name) {
$('body').append('<p>Hi ' + name + '</p>');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment