Isiah Meadows (2014-10-22T20:12:40.000Z)
d at domenic.me (2014-11-18T22:38:42.256Z)
I know that this could clearly work for implementing private arrays, etc. as well, but what about private integer or booleans? ```js let _x = 0; let _y = false; class Foo { constructor(x, y) { this::_x = x; this::_y = y; } // ... } ```