Вычисление большего числа из двух чисел // Примеры
document.write(Math.max(5,10) + « «); document.write(Math.max(0,150,30,20,38) + « «); document.write(Math.max(-5,10) + « «); document.write(Math.max(-5,-10) + « «); document.write(Math.max(1.5,2.5)); К примерам JavaScript >> В раздел JavaScript >> На главную >>
Читать далее →