ブラウザに「thinks」と「harry」の単語の間にスペースがない「thinksHarryPotter」が表示されるので、どうすればよいか教えていただけますか?これは私のコードです:
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var person = prompt("Please enter your name", "Harry Potter");
if (person != null) {
alert("thinks" + person);
}
}
</script>
</body>
</html>