6. The Javascript code below is intended to display "even" if the numerical variable
myNum is even.
if (**MISSING CONDITION** ) {
console.log("even");
}
Which of the following can be used to replace **MISSING CONDITION** so that the code
fragment will work as intended?
A. (myNum % 1) == 0
B. (myNum & 1) == 1
C. (myNum & 2) == 0
D. (myNum & 2) == 1