Problem 5: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.
What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20?
My code to attempt the solution:
var x = 2520;
var div = 20;
var smallest = function(){
while (div > 0){
if (x%div ===0){
div = div - 1;
smallest();
}
else{
x = x+1;
div = 20;
smallest()
}
};
return x;
};
console.log(smallest());