1009 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			1009 B
		
	
	
	
	
	
	
	
title, id, challengeType, videoUrl, localeTitle
| title | id | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| Fibonacci sequence | 597f24c1dda4e70f53c79c81 | 5 | 
Description
undefined
Instructions
undefined
Tests
tests:
  - text: ''
    testString: 'assert(typeof fibonacci === "function", "<code>fibonacci</code> is a function.");'
  - text: ''
    testString: 'assert(typeof fibonacci(2) == "number", "<code>fibonacci(2)</code> should return a number.");'
  - text: ''
    testString: 'assert.equal(fibonacci(3),1,"<code>fibonacci(3)</code> should return 1.");'
  - text: ''
    testString: 'assert.equal(fibonacci(5),3,"<code>fibonacci(5)</code> should return 3.");'
  - text: ''
    testString: 'assert.equal(fibonacci(10),34,"<code>fibonacci(10)</code> should return 34.");'
Challenge Seed
function fibonacci(n) {
  // Good luck!
}
Solution
// solution required