Ingen har angitt at denne anmeldelsen er nyttig ennå
Anbefalt
0.0 timer siste to uker / 4.8 timer totalt
Publisert: 1. juli 2022 kl. 9.48
Oppdatert: 1. juli 2022 kl. 9.52

const opinion = [
"positive",
"I like the concept of the game, but the menu and the functions are bloated, I often lose the track and I forget what I
should do next, this is a fun way to learn JavaScript for some people, but I learned languages on my own way which helps
me more than such games. This game could be overwhelming for many beginners to programming. I would recommend
this game for people who understand JavaScript on a beginner-intermediate level and not complete beginners, but that
should be obvious."
]
var opinion_is_positive;
var opinion_is_negative;

function opinion_bool_manager(bool) {
if (bool === true) {
opinion_is_negative = false
opinion_is_positive = true
} else {
opinion_is_negative = true
opinion_is_positive = false
}
};

if (opinion) {
if (opinion[0] === "positive") {
opinion_bool_manager(true)
console.log(opinion[1])
} else {
opinion_bool_manager(false)
console.log(opinion[1])
}
}
Var denne anmeldelsen nyttig? Ja Nei Morsom Utmerkelse
1 kommentarer
76561199768231817 7. sep. 2024 kl. 0.47 
OMG, this is so complicated! 🤯 I'm not a programmer, so this is all Greek to me. Maybe you should just make a simpler game that's easier to understand. 🤷‍♀️