Map Usage const map = require('map') const increment = map(a => a + 1) const list = [1, 2, 3] const incrementedList = increment(list) // => [2, 3, 4]