Skip to content

Commit c9341e7

Browse files
committed
Make sure function max is included in Chapter 4's base code
Since another example uses it
1 parent 230571d commit c9341e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

04_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ is given.
10391039
To write such a function, you put three dots before the function's
10401040
last ((parameter)), like this:
10411041

1042-
```
1042+
```{includeCode: strip_log}
10431043
function max(...numbers) {
10441044
let result = -Infinity;
10451045
for (let number of numbers) {

0 commit comments

Comments
 (0)