diff --git a/client/src/pages/guide/english/javascript/popup-boxes/index.md b/client/src/pages/guide/english/javascript/popup-boxes/index.md index 0edb05c75f..5e146c3787 100644 --- a/client/src/pages/guide/english/javascript/popup-boxes/index.md +++ b/client/src/pages/guide/english/javascript/popup-boxes/index.md @@ -12,7 +12,7 @@ There are three different kinds of popup methods used in JavaScript: alert method displays messages that don't require the user to enter a response. Once this function is called, an alert dialog box will appear with the specified (optional) message. Users will be required to confirm the message before the alert goes away. ### Example: -`window.alert("Welcome to our website");` +`window.alert("Hello world");` ![MDN Alert Example](https://mdn.mozillademos.org/files/130/AlertHelloWorld.png) @@ -21,7 +21,7 @@ The