Last active
June 3, 2017 07:00
-
-
Save jendiamond/b10be0bdec5bdc236f1acef50b7132cd to your computer and use it in GitHub Desktop.
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 characters
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