test/index.html
Sabrina b974097633 Merge branch '加速asin'
# Conflicts:
#	index.html
2020-10-25 16:59:40 +08:00

47 lines
659 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Git Demo</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script>
function plus (a, b) {
return a+b;
}
function divide(a, b) {
if(b <= 0) {
throw 'b must be greater than0'
}
return a/b;
}
function minus(a, b) {
return a-b;
}
function pow(a, b) {
return Math.pow(a, b);
}
function abs(a) {
return Math.abs(a);
}
function cos(a) {
return Math.cos(a)
}
function sin(a) {
return Math.sin(a);
}
function asin(a) {
return Math.asin(a);
}
</script>
</body>
</html>