Crear referencia circular JavaScript

function Foo() {
  this.abc = "Hello";
  this.circular = this;
}

var foo = new Foo();
Homeless Herring