// Possible error
if (a === b)
  c = d;
  e = f;

// Recommended
if (a === b) {
  c = d;
}
e = f;
