Skip to content

Commit

Permalink
Update common-content/en/module/js2/timing/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Wagner-Hall <[email protected]>
  • Loading branch information
SallyMcGrath and illicitonion authored Dec 30, 2024
1 parent 8a45ac5 commit 7c48158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common-content/en/module/js2/timing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function printMessage(name) {
console.log(`My name is ${name}`);
}

setTimeout(printMessage, 3000, "Sally"); // <-- Call printMessage after at least 3000ms
setTimeout(printMessage, 3000, "Sally"); // <-- Call printMessage after at least 3000ms, with the argument "Sally"
printName("Daniel");
```

Expand Down

0 comments on commit 7c48158

Please sign in to comment.