Skip to content

Instantly share code, notes, and snippets.

@rtivital
Created April 7, 2016 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtivital/b7299a57514c11145e1bed398d5750f9 to your computer and use it in GitHub Desktop.
Save rtivital/b7299a57514c11145e1bed398d5750f9 to your computer and use it in GitHub Desktop.
var fn = function() {
return 5 + 3;
};
fn(); // 8
fn(function() {
console.log('Ничего не получается');
}); // 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment