How do I figure out if a variable is divisible by 2? Furthermore I need do a function if it is and do a different function if it is not.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use modulus:
|
|||||||||||||
|
|
Seriously, there's no jQuery plugin for odd/even checks? Well, not anymore - releasing "Oven" a jQuery plugin under the MIT license to test if a given number is Odd/Even. Source code is also available at http://jsfiddle.net/7HQNG/ Test-suites are available at http://jsfiddle.net/zeuRV/
|
|||||||||||||||||||||
|
|
You don't need jQuery. Just use JavaScript's Modulo operator. |
|||
|
|
|
You can use the modulus operator like this, no need for jQuery. Just replace the
|
|||
|
|
|
You can also:
|
|||||
|
|
array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] array.each { |x| puts x if x % 2 == 0 } ruby :D2 4 6 8 10 |
||||
|
|
