Last active
January 21, 2017 21:18
This file contains 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
function combine (one, two) { | |
return one + two | |
} | |
function hello (name) { | |
return 'Hello ' + (name || 'World') | |
} | |
function go {} ( | |
return true | |
) | |
function putBall () {} | |
putball() | |
function turnRight () {} | |
turnRight | |
var x == 5; | |
var y = function () { | |
consoleLog('hi there') | |
} |
Author
nexdrew
commented
Jan 21, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment