function f(num) { for (var i=0, a = 1; (a*=2) < num; i++); return i } alert(f(100));
var n=100; alert(Math.floor(Math.log(n)/Math.log(2)));