= 50;
const maxSize = 1.4;
const func = (number) => {
const calc = number * maxSize / border;
console.log(calc, 'number', number)
}
func(50) // need to return 1.4, like as currently
func(25) // need to return 1.2, currently 1
func(0) // need to return 1, currently return 0
мне нужно возвращать значения от 1 до значения переменной maxSize, но я не очень понимаю, что нужно включить в функцию чтобы добавить этот предел
плейграунд по ссылке: https://codepen.io/neosheps/pen/RwVeYpR?editors=1010
Условие
Обсуждают сегодня