Empty statements, i.e. ;, are usually introduced by mistake, for example because:

Noncompliant Code Example

var x = 1;; // Noncompliant

var foo = function() {
  ;
};

Compliant Solution

var x = 1;

var foo = function() { };

See