No one has rated this review as helpful yet
Recommended
0.0 hrs last two weeks / 4.8 hrs on record
Posted: 1 Jul, 2022 @ 9:48am
Updated: 1 Jul, 2022 @ 9:52am

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])
}
}
Was this review helpful? Yes No Funny Award
1 Comments
76561199768231817 7 Sep, 2024 @ 12:47am 
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. 🤷‍♀️