Last active
May 28, 2018 23:21
-
-
Save paxelpixel/13a043999a63f83afccd316e7d8a10e3 to your computer and use it in GitHub Desktop.
Revisions
-
paxelpixel revised this gist
May 28, 2018 . 1 changed file with 1 addition and 1 deletion.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 @@ -8,4 +8,4 @@ function doImportantStuff() { reportImportantStuff(); } doImportantStuff(); -
paxelpixel revised this gist
May 28, 2018 . 1 changed file with 2 additions and 2 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,11 +1,11 @@ function doImportantStuff() { var someVariable = "important stuff"; function reportImportantStuff() { console.log(someVariable) // "important stuff" } reportImportantStuff(); } doUsefulThing(); -
paxelpixel revised this gist
May 28, 2018 . 1 changed file with 4 additions and 4 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,8 +1,8 @@ function doImportantStuff() { var someVariable = "important stuff"; function someImportantStuff() { console.log(someVariable) // "important stuff" } someUsefulThing(); -
paxelpixel renamed this gist
May 28, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
paxelpixel revised this gist
May 28, 2018 . 1 changed file with 2 additions and 1 deletion.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,9 +1,10 @@ function doUsefulThing() { var someVariable = "useful stuff"; function someUsefulThing() { console.log(someVariable) // "useful stuff" } someUsefulThing(); } -
paxelpixel renamed this gist
May 28, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
paxelpixel created this gist
May 28, 2018 .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,10 @@ function doUsefulThing() { var someVariable = "useful stuff"; function someUsefulThing() { console.log(someVariable) // "useful stuff" } someUsefulThing(); } doUsefulThing();