Merge branch '加入除法功能'

# Conflicts:
#	index.html
This commit is contained in:
Sabrina 2020-10-25 15:57:52 +08:00
commit 9d93b390d7

View File

@ -12,7 +12,11 @@
} }
function product(a, b) { function product(a, b) {
return a*b; return a * b;
}
function divide(a, b) {
return a/b;
} }
</script> </script>
</body> </body>