Skip to content

Instantly share code, notes, and snippets.

@alexmasyukov
Created February 8, 2018 05:08
Show Gist options
  • Save alexmasyukov/fa286c14fd7ce6207a60880d5874e631 to your computer and use it in GitHub Desktop.
Save alexmasyukov/fa286c14fd7ce6207a60880d5874e631 to your computer and use it in GitHub Desktop.
Выполнить анонимную функцию сразу без объявлеия
(function (name) {
console.log(`Приветствую, ${name}!`);
})('Иван'); // Приветствую, Иван!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment