加入minus function
This commit is contained in:
parent
0ae18da971
commit
c39c6f3bef
@ -10,10 +10,14 @@
|
|||||||
function plus (a, b) {
|
function plus (a, b) {
|
||||||
return a+b;
|
return a+b;
|
||||||
}
|
}
|
||||||
|
|
||||||
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>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user