Наши функции

function decorate(text, symb) {
  return symb + text + symb
}

function decorateSmart(text, symb) {
  if (typeof symb === 'undefined') symb = '$'
  return symb + text + symb
}

Вызовы функций