尚未有人觉得这篇评测有价值
推荐
过去 2 周 0.0 小时 / 总时数 4.8 小时
发布于:2022 年 7 月 1 日 上午 9:48
更新于:2022 年 7 月 1 日 上午 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])
}
}
这篇评测是否有价值? 欢乐 奖励
1 条留言
76561199768231817 2024 年 9 月 7 日 上午 12: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. 🤷‍♀️