Revisions

gist: 167591 Download_button fork
public
Public Clone URL: git://gist.github.com/167591.git
Embed All Files: show embed
Fun with objects and scope #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//dirty objects
var f = {
  a: 1,
  b: 2,
  c: 3,
  d: function() { return this.a; }
};
f.a;
f.b;
f.c;
f.e = 42;
f["u"]=52;
f.u
 
f[1] = 52;
52
f["1"]
52