0
about javascript function
how to find cot() sec() cosec() value in scientific calculator and which function used in js
1 ответ
0
function ctg(x) { return 1 / Math.tan(x); } function arcctg(x) { return Math.PI / 2 - Math.atan(x); }
how to find cot() sec() cosec() value in scientific calculator and which function used in js