You are thinking of the challenge on the front page. He's talking about the first of the three "guest challenges" you get if you click the link on the front page to see more challenges.
The front page challenges asked for the sum of the integers from 1 to 1000, excluding those divisible by 5 or 7. Here was my sort of smart-ass answer:
function jsChallenge() {
var num = 1000;
var t = num;
var sum = t*(t+1)/2;
t = Math.floor(num/5);
sum -= 5*t*(t+1)/2;
t = Math.floor(num/7);
sum -= 7*t*(t+1)/2;
t = Math.floor(num/35);
sum += 35*t*(t+1)/2;
return sum;
}
The first guest challenge asks for the sum of the integers from 1 to 1000, excluding those that contain the digit 7.