JavaScript Sum All Odd Fibonacci Numbers Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num. The first two numbers in the Fibonacci sequence are 1 and 1. Every additional number in the sequence is the sum of the two previous numbers. The first six
Tools Git Rundown The Importance of Version Control What is git? Git is a distributed version control system. Distributed: * Files are stored on multiple machines (i.e. your local machine and github.com) Many people can work on one project simultaneously Version control: * previous versions of the project can be saved and retrieved