Skip to content

Instantly share code, notes, and snippets.

@scripting
Last active June 18, 2017 12:27
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 scripting/2b5e237a105b6cb96287 to your computer and use it in GitHub Desktop.
Save scripting/2b5e237a105b6cb96287 to your computer and use it in GitHub Desktop.
A script I have running as an endpoint on my PagePark server.
var s = "<ul>";
for (var i = 1; i <= 10; i++) {
s += "<li>" + i + "</li>";
}
s += "</ul>";
s;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment