Aplicando lo visto en funciones al juego:
<meta charset="utf-8">
<style type="text/css">
body {
background-color: black;
color: white;
}
</style>
<script type="text/javascript">
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(texto) {
document.write(texto);
saltarLinea();
}
function darNumAleat(){
return Math.round(Math.random()*10);
}//Declarando esta función me ahorro el tener que escribir las dos funciones Math en la variable
var numeroSistema = darNumAleat();//invoco la función creada arriba
var numeroLanzado = parseInt(prompt("Escoja un número entre 0 y 10"));
if(numeroSistema == numeroLanzado){
imprimir("Acertó el número");
}
else {
imprimir("No acertó el número. El número era el " + numeroSistema);
}
</script>