function name() {} и () => {}. Стрелочные функции удобны для колбэков.
<script>
function getPrice(base, percent) {
return base * (1 - percent / 100);
}
const formatPrice = price => price.toLocaleString("ru-RU") + " ₽";
console.log(formatPrice(getPrice(5900, 20)));
</script>