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