diff --git a/1-js/02-first-steps/06-alert-prompt-confirm/1-simple-page/solution.md b/1-js/02-first-steps/06-alert-prompt-confirm/1-simple-page/solution.md index 903ee7ff3..167b350ac 100644 --- a/1-js/02-first-steps/06-alert-prompt-confirm/1-simple-page/solution.md +++ b/1-js/02-first-steps/06-alert-prompt-confirm/1-simple-page/solution.md @@ -1,11 +1,11 @@ JavaScript-code: ```js demo run -let name = prompt("What is your name?", ""); +let name = prompt("Tên bạn là gì?", ""); alert(name); ``` -The full page: +Toàn bộ nội dung trang: ```html @@ -14,8 +14,7 @@ The full page: