Skip to content

Instantly share code, notes, and snippets.

@bmatusiak
Last active December 15, 2015 08:39
Show Gist options
  • Save bmatusiak/5232884 to your computer and use it in GitHub Desktop.
Save bmatusiak/5232884 to your computer and use it in GitHub Desktop.
var _privAlien = {
x: null
};
var alien = {
get x() {
return function (x) {
if (!x) return _privAlien.x;
else _privAlien.x = x;
};
},
set x($var) {
this.x($var);
}
};
alien.x(293);
//or
alien.x = 293;
window.document.writeln(alien.x()); // == "293"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment