Created
February 8, 2018 05:08
-
-
Save alexmasyukov/fa286c14fd7ce6207a60880d5874e631 to your computer and use it in GitHub Desktop.
Выполнить анонимную функцию сразу без объявлеия
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (name) { | |
console.log(`Приветствую, ${name}!`); | |
})('Иван'); // Приветствую, Иван! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment