const sec_post = "My second post";
22 августа 2024 г., 06:06
let num = Math.floor(Math.random() * 10) + 1;
let guess = prompt("Guess number from 1 to 10: ");
if (+guess === num) alert("Correct!");
else alert("Wrong! Correct number was: " + num);