javascript-tutorial / en.javascript.info

Modern JavaScript Tutorial
https://javascript.info
Other
23.33k stars 3.84k forks source link

Document error at alert-prompt-confirm #3714

Closed bd1354 closed 2 months ago

bd1354 commented 2 months ago

There is a code block at the prompt section says;

let age = prompt('How old are you?', 100);

alert(`You are ${age} years old!`);

Expected behaviour -> "You are 100 years old!" But it returns You are null years old!