Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Created July 23, 2015 15:10
Show Gist options
  • Save jesusgoku/11e60f8e7a9e5928f06f to your computer and use it in GitHub Desktop.
Save jesusgoku/11e60f8e7a9e5928f06f to your computer and use it in GitHub Desktop.
Contants class in JavaScript
var Contants = {};
(function () {
var values = { VERSION: '0.0.1' };
var properties = {};
for (var i in values) {
properties[i] = {
value: values[i],
writable: false
};
}
Object.defineProperties(Contants, properties);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment