diff options
-rw-r--r-- | entries/joeljih/script.js | 23 | ||||
-rw-r--r-- | people.json | 11 |
2 files changed, 34 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 + + diff --git a/people.json b/people.json index 676cade..990e755 100644 --- a/people.json +++ b/people.json @@ -155,6 +155,17 @@ ] }, { + "github": "joeljih", + "name": "Joel Jih", + "title": "BSc & BEd, UBC", + "entries": [ + { + "name": "js", + "link": "./entries/joeljih/script.js" + } + ] + }, + { "github": "kevindhir", "name": "Kevin Dhir", "title": "BCom, UBC", |