about javascript function | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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 Antwort
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