Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created October 24, 2015 09:24
Show Gist options
  • Save xto3na/53767592a9e843fa16e9 to your computer and use it in GitHub Desktop.
Save xto3na/53767592a9e843fa16e9 to your computer and use it in GitHub Desktop.
Возврат функции в JS
var myFunc = function() {
return function(){
console.log("Hi!");
}
};
//Вызов
myFunc()(); //Выведет в консоль "Hi!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment