Comparto el codigo que cree me gustaria opiniones o como mejorarlo gracias
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
function saltarLinea() {
/// esta funcion crea saltos de linea
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase); //
saltarlinea();
}
function sorteo(n) {
return Math.round(Math.random()*10);
}
var numeroPensado = sorteo();
var numeroLanzado = parseInt(prompt("Ingrrese un numero de 0 a 10"));
if (numeroPensado == numeroLanzado) {
imprimir("acerto el numero felicidades ")
} else {
if (numeroLanzado > numeroPensado) {
imprimir("Lo siento el numero pensado era menor" +" "+ numeroPensado);
} else {
imprimir("Lo siento el numero pensado era mayor" + " "+ numeroPensado);
}
}
</script>
</html>