Skip to content

Files

Latest commit

 

History

History

Day-11

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Return the N-th value of the Fibonacci sequence.

Instructions

Return the N-th value of the Fibonacci sequence.

Challenges (0/1 done)

  • function fibonacci(n) returns the N-th value of the Fibonacci sequence.
function fibonacci(n) {
	// write your solution here

	return
}

console.log(`fibonacci value at position 5: ${fibonacci(5)}`)