Resources
Last active
August 29, 2015 13:56
-
-
Save dwayne/9247336 to your computer and use it in GitHub Desktop.
Tuts+ Premium Course - JavaScript Fundamentals 101 - Notes
Prerequisites:
There are two ways to get JavaScript on the page:
-
Inline scripts
<script> console.log("Hello, world!"); </script>
-
Embeded scripts
// hello.js console.log("Hello, world from script!");
<script src="hello.js"></script>
For more on the script element see: https://developer.mozilla.org/en/docs/Web/HTML/Element/script.
Resources:
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment