docdis/learn-jshint

View on GitHub
example.js

Summary

Maintainability
A
0 mins
Test Coverage
var test = true;
if(test === true) {
  console.log("JSHint Should Flag this double equals...");
}

if(test === false) {
  console.log('and it should spot the lack of curly braces here...');
}