加入minus function

This commit is contained in:
Sabrina 2020-10-25 16:13:35 +08:00
parent 0ae18da971
commit c39c6f3bef

View File

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