Folie 32:
function M(n){ return n * 2 + 1 } function AwM(n){ return n * 2 } function ChiM(n){ i = 0 while(true){ if(M(i) == n){ console.log(true) return } else if(AwM(i) == n){ console.log(true) return } i++ } }
ChiM(2345)
ausführen