Skip to content

Instantly share code, notes, and snippets.

@SomeKittens
Created November 4, 2013 18:36
Show Gist options
  • Select an option

  • Save SomeKittens/7307202 to your computer and use it in GitHub Desktop.

Select an option

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