mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
npx fixx (#421)
This commit is contained in:
@ -6,7 +6,6 @@ const fibonacci = (N) => {
|
||||
return fibonacci(N - 2) + fibonacci(N - 1)
|
||||
}
|
||||
|
||||
|
||||
// testing
|
||||
(() => {
|
||||
const number = 5
|
||||
|
Reference in New Issue
Block a user