вызов анонимной функции, объявляя это
var step = (function(){
// this code is executed immediately,
// the return value is assigned to `step`
})();
Parotay
var step = (function(){
// this code is executed immediately,
// the return value is assigned to `step`
})();