test/index.html
Sabrina 9d93b390d7 Merge branch '加入除法功能'
# Conflicts:
#	index.html
2020-10-25 15:57:52 +08:00

24 lines
350 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 product(a, b) {
return a * b;
}
function divide(a, b) {
return a/b;
}
</script>
</body>
</html>