加入function divide

This commit is contained in:
Sabrina 2020-10-25 15:53:20 +08:00
parent f5cd025433
commit db2d2ed936

View File

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