A Pen by Margaret E. Ikeda on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let myArray = [1, 2, 4, 6, 7] | |
func sumArray (array: [Int]) -> Int { | |
return array.reduce(0, +) | |
} | |
sumArray(array: myArray) |
FreeCodeCamp student tribute page dedicated to Gotham Book Mart bookstore in NYC, USA.
A Pen by Margaret E. Ikeda on CodePen.