From db2d2ed936cc61c7983da3ddc4ac896937e52b4e Mon Sep 17 00:00:00 2001 From: Sabrina Date: Sun, 25 Oct 2020 15:53:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5function=20divide?= 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 d3070f2..0dde7a1 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,10 @@ function plus (a, b) { return a+b; } + + function divide(a, b) { + return a/b; + }