about javascript function | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

about javascript function

how to find cot() sec() cosec() value in scientific calculator and which function used in js

4th Apr 2019, 7:40 PM
Aman Patel
Aman Patel - avatar
1 ответ
0
function ctg(x) { return 1 / Math.tan(x); } function arcctg(x) { return Math.PI / 2 - Math.atan(x); }
4th Apr 2019, 10:31 PM
Ahmed Baklouti
Ahmed Baklouti - avatar