Last active
June 18, 2017 12:27
-
-
Save scripting/2b5e237a105b6cb96287 to your computer and use it in GitHub Desktop.
Revisions
-
scripting revised this gist
Jun 18, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ var s = "<ul>"; for (var i = 1; i <= 10; i++) { s += "<li>" + i + "</li>"; } s += "</ul>"; s; -
scripting created this gist
Jan 8, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ var s = ""; for (var i = 1; i < 1000; i++) { s += i + "\r\n"; } s;