📅  最后修改于: 2022-03-11 14:48:54.101000             🧑  作者: Mango
//You can't just use:
if (5 == 5 || 6) { ERROR }
//With the || being the OR.
//You have to say:
if (5 == 5 || 6 == 6) { WORKED }
//Hope that helped! :)