From c07cec5f1c05063833711cdefe3e6bdd81ee8d1d Mon Sep 17 00:00:00 2001 From: Sabrina Date: Sun, 25 Oct 2020 16:40:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5pow=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.html b/index.html index 712b89b..eb8b358 100644 --- a/index.html +++ b/index.html @@ -21,6 +21,10 @@ function minus(a, b) { return a-b; } + + function pow(a, b) { + return Math.pow(a,b); + }