var a = prompt('a'); var b = prompt('b'); var c = a; while(c < b) { if(c % 2 == 0) { alert(c); } c++; }