Skip to content

Commit 369e9d0

Browse files
authored
Merge pull request #478 from ut-code/fix-max-answer
Fix answer of max
2 parents c553a06 + 3f737f8 commit 369e9d0

File tree

1 file changed

+1
-2
lines changed
  • docs/1-trial-session/09-functions/_samples/max

1 file changed

+1
-2
lines changed

docs/1-trial-session/09-functions/_samples/max/script.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ function max(a, b) {
66
}
77
}
88

9-
10-
document.write(`${4}${7}のうち大きいのは${max(4, 7)}です。`);
9+
document.write(`4と7のうち大きいのは${max(4, 7)}です。`);

0 commit comments

Comments
 (0)