Skip to content

Instantly share code, notes, and snippets.

@SomeKittens
Created November 4, 2013 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SomeKittens/7307202 to your computer and use it in GitHub Desktop.
Save SomeKittens/7307202 to your computer and use it in GitHub Desktop.
Linter Alert
function() {
var myVariable = 'test 123';
console.log(myVaraible); // Uh oh! There's a typo here.
// JSLint tells us `'myVaraible' was used before it was defined`, catching the error before it's run
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment