Skip to content

Instantly share code, notes, and snippets.

@mariusGundersen
Last active August 29, 2015 14:02
Show Gist options
  • Save mariusGundersen/918d5cdda5cd67373d60 to your computer and use it in GitHub Desktop.
Save mariusGundersen/918d5cdda5cd67373d60 to your computer and use it in GitHub Desktop.
labelled blocks

JavaScript has labels, which can be placed before blocks to create a named section of code, serving almost the same use as an imidiately invoked function expression (IIFE)

(function iife(){
  var scoped = "this is scoped stuff";
})();

iife: {
  let scoped = "this is scoped";
}

It can also be used to section of code in a long function, for example separating the constructor from instance declarations:

function Person(name){
  this.greet = function(){
    return "hello " + this.name
  }
  
  init: {
    this.name = name;
  }
}

var person = new Person("Marius");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment