如何在javascripf中调用函数,其中查找数字偶数或奇数。
答案 0 :(得分:0)
听说过模数吗?
if (n % 2 == 0)
{
// I'm even
}
else
{
// I'm odd
}
答案 1 :(得分:0)
function myFunction(n) {
if(n % 2 == 0)
console.log("n is even");
else
console.log("n is odd"); // The function returns the odd/even no.
}
然后将函数调用为
myfunction(k);
其中k是作为输入的数字
如果有帮助......请标记我的答案