var get_fact = function(n){var s=1;for(i=2;i<=n;i++) {s*=i} return s;}, s = 1; for (i=2;i<=10;i++) { s *= Math.pow((1-1/get_fact(i)),2) } alert(s);