Created
November 22, 2015 07:34
-
-
Save Teino1978-Corp/1ae2b82878f051fe422c to your computer and use it in GitHub Desktop.
mobile responsive - http://www.w3schools.com/js/js_strict.asp
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
x = 3.14; // This will not cause an error. | |
myFunction(); | |
function myFunction() { | |
"use strict"; | |
y = 3.14; // This will cause an error (y is not defined) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment