add asin function

This commit is contained in:
Sabrina 2020-10-25 16:58:31 +08:00
parent e396b2321a
commit db98dc718b

View File

@ -33,6 +33,10 @@
function cos(a) {
return Math.cos(a)
}
function asin(a) {
return Math.asin(a);
}
</script>
</body>
</html>