diff --git a/docs/guides/javascript-execution.md b/docs/guides/javascript-execution.md index a32a63055a2..9daaee222b8 100644 --- a/docs/guides/javascript-execution.md +++ b/docs/guides/javascript-execution.md @@ -91,7 +91,7 @@ You can provide arguments to your function: ```ts const three = await page.evaluate( (a, b) => { - return 1 + 2; + return a + b; // 1 + 2 }, 1, 2