add cos funtion

This commit is contained in:
Sabrina 2020-10-25 16:52:27 +08:00
parent 85202dedd8
commit e396b2321a

View File

@ -29,6 +29,10 @@
function abs(a) {
return Math.abs(a);
}
function cos(a) {
return Math.cos(a)
}
</script>
</body>
</html>