Merge branch '加入除法功能'

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

View File

@ -14,6 +14,10 @@
function product(a, b) {
return a * b;
}
function divide(a, b) {
return a/b;
}
</script>
</body>
</html>