Skip to content

Instantly share code, notes, and snippets.

@timrwood
Created October 24, 2012 21:59
Show Gist options
  • Save timrwood/3949194 to your computer and use it in GitHub Desktop.
Save timrwood/3949194 to your computer and use it in GitHub Desktop.
Static Soup
(function(){
"use strict";
var a = {
super : "super",
static : "static"
}
var b = {
"super" : "super",
"static" : "static"
}
console.log(a.super, a.static, a["super"], a["static"])
console.log(b.super, b.static, b["super"], b["static"])
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment