From b37201eaa13805aa1038eda23654996988e9477c Mon Sep 17 00:00:00 2001 From: Sabrina Date: Sun, 25 Oct 2020 17:01:06 +0800 Subject: [PATCH] add acos function --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 5eca14e..6b13f09 100644 --- a/index.html +++ b/index.html @@ -38,9 +38,14 @@ function sin(a) { return Math.sin(a); } + function asin(a) { return Math.asin(a); } + + function acos(a) { + return Math.acos(a); + }