我正在使用p5.js运行一些javascript,并且我遇到了这两个条件:
if( this.colour >= 255 )
this.up = false;
else if( this.coulour < 0 ){
console.log("Ca yest !");
this.up = true;
}
这是我的问题:以下行永远不会评估为true,即使this.colour为负数
else if( this.colour < 0 )
我的错误在哪里?非常感谢
答案 0 :(得分:0)
错字? this.colour
与this.coulour