Skip to content

Instantly share code, notes, and snippets.

@mearns
Created November 13, 2018 19:05
Show Gist options
  • Save mearns/4cac09b76155d502ca12bdaef1f9cd57 to your computer and use it in GitHub Desktop.
Save mearns/4cac09b76155d502ca12bdaef1f9cd57 to your computer and use it in GitHub Desktop.
// `npm install --save build-object-better`
const bob = require('build-object-better')
const dayNamesInOrder = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
const daysOfTheWeek = bob(dayNamesInOrder, (dayName, idx) => idx)
const studentGradeCache = bob(studentNames, lookupStudentGrade)
const perfectSquaresMemo = bob([
0, 1, 2, 3, 4, 5, 6
], (input) => input * input)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment