Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:14
Show Gist options
  • Save ezhov-da/007f8edc522a2dc6a39aeb53ebc84ce2 to your computer and use it in GitHub Desktop.
Save ezhov-da/007f8edc522a2dc6a39aeb53ebc84ce2 to your computer and use it in GitHub Desktop.
пространство имен
/*
* Для того, чтоб ввести пространство имен, к примеру [TEST] необходимо:
*/
window.TEST = {};
TEST.Util = (function(){
var variable = 'переменные',
testFunction = function(){
//что-то делаю
},
TESTUtil;
return TESTUtil = {
'функция доступная из вне': function(){
return variable;
}
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment