EN
JavaScript - call function anonymously
3
points
Quick solution:
// ONLINE-RUNNER:browser;
(function () {
console.log('hello');
})();