Skip to content

Instantly share code, notes, and snippets.

@Teino1978-Corp
Created November 22, 2015 07:34
Show Gist options
  • Save Teino1978-Corp/1ae2b82878f051fe422c to your computer and use it in GitHub Desktop.
Save Teino1978-Corp/1ae2b82878f051fe422c to your computer and use it in GitHub Desktop.
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