加入pow function

This commit is contained in:
Sabrina 2020-10-25 16:40:39 +08:00
parent c5fe0f5268
commit c07cec5f1c

View File

@ -21,6 +21,10 @@
function minus(a, b) {
return a-b;
}
function pow(a, b) {
return Math.pow(a,b);
}
</script>
</body>
</html>