about javascript function | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
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 Respuesta
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