function max() { var x=2; while(x!=x+1) { x*=2; } return x; } alert([ max()-1, max(), max()+1 ].join('\n'));