Inseri esses códigos para deixar o jogo mais difícil conforme vai ganhando pontos, mas como podemos deixar ele melhor escrito?
function movimentaCarro(){
for (let i = 0; i < imagemCarros.length; i++){
if (nivel2()){
xCarros[i] -= velocidadeCarros[i] * 1.1;
}
if(nivel3()){
xCarros[i] -= velocidadeCarros[i] * 1.2;
}
if(nivel4()){
xCarros[i] -= velocidadeCarros[i] * 1.3;
} else {
xCarros[i] -= velocidadeCarros[i];
}
}
}
function nivel2(){
if(meusPontos > 5){
return true;
}
}
function nivel3(){
if(meusPontos > 10){
return true;
}
}
function nivel4(){
if(meusPontos > 15){
return true;
}
}