Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

JavaScript Question of the Day April 1, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    Consider the following program:

    function main() {
        for (let i = 1; i <= 10; i++) {
            if (mystery(i)) {
                console.log(i);
            }
        }
    }
    
    function mystery(num) {
        if (num <= 1) {
            return false;
        }
        if (num <= 3) {
            return true;
        }
        if (num % 2 == 0 || num % 3 == 0) {
            return false;
        }
        for (let i = 5; i * i <= num; i = i + 6) {
            if (num % i == 0 || num % (i + 2) == 0) {
                return false;
            }
        }
        return true;
    }
    
    main();
    JavaScript

    What will be printed in the console?