Skip to content

Instantly share code, notes, and snippets.

@jendiamond
Last active June 3, 2017 07:00
Show Gist options
  • Save jendiamond/b10be0bdec5bdc236f1acef50b7132cd to your computer and use it in GitHub Desktop.
Save jendiamond/b10be0bdec5bdc236f1acef50b7132cd to your computer and use it in GitHub Desktop.
var functionName;
if( someCondition ) {
functionName = function () {
...
};
}
http://www.howtocreate.co.uk/tutorials/javascript/functions
<!DOCTYPE html>
<body>
<h1>My First Web Page</h1>
<p>My First Paragraph</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = 5 + 6;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment