aboutsummaryrefslogtreecommitdiff
path: root/entries/joeljih/script.js
diff options
context:
space:
mode:
authorbraxtonhall2022-10-31 04:37:12 +0000
committerbraxtonhall2022-10-31 04:37:12 +0000
commit0a253af87970fc92f954af1443cf5e9525e96600 (patch)
tree6c0a9753abf7491ebad9456633fc0d4f3696f30c /entries/joeljih/script.js
parent25afac0b0b226d5b06b392047a9a914ab968c6a8 (diff)
Add Joel
Diffstat (limited to 'entries/joeljih/script.js')
-rw-r--r--entries/joeljih/script.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/entries/joeljih/script.js b/entries/joeljih/script.js
new file mode 100644
index 0000000..7153a88
--- /dev/null
+++ b/entries/joeljih/script.js
@@ -0,0 +1,23 @@
+function fib(n)
+{
+ let a = 0, b = 1, c, i;
+ if( n == 0)
+ return a;
+ for(i = 2; i <= n; i++)
+ {
+ c = a + b;
+ a = b;
+ b = c;
+ }
+ return b;
+}
+
+// Driver code
+
+let n = 25;
+
+document.write(fib(n));
+
+// This code is contributed by Mayank Tyagi, From geeksforgeeks.org
+
+