变量是否可被2整除

变量是否可被2整除

我如何确定变量是否可被2整除?此外,如果需要,我需要执行一个功能,如果不是,则需要执行其他功能。

最佳答案

使用模数:

// Will evaluate to true if the variable is divisible by 2
variable % 2 === 0

关于javascript - 查找变量是否可被2整除,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2821006/

10-11 00:10