We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039ed99 commit 4b8eae7Copy full SHA for 4b8eae7
lib/node_modules/@stdlib/constants/float64/max-nth-factorial/README.md
@@ -69,6 +69,8 @@ function factorial( n ) {
69
return a;
70
}
71
72
+var v;
73
+var i;
74
for ( i = 0; i < 200; i++ ) {
75
v = factorial( i );
76
if ( i > FLOAT64_MAX_NTH_FACTORIAL ) {
lib/node_modules/@stdlib/constants/float64/max-nth-factorial/examples/index.js
@@ -20,9 +20,6 @@
20
21
var FLOAT64_MAX_NTH_FACTORIAL = require( './../lib' );
22
23
-var v;
24
-var i;
25
-
26
function factorial( n ) {
27
var a;
28
var i;
@@ -34,6 +31,8 @@ function factorial( n ) {
34
31
35
32
36
33
37
38
39
0 commit comments