Created
April 13, 2018 12:17
-
-
Save johnathan-sewell/9f7817af7f2623346cf1cad4237aedf9 to your computer and use it in GitHub Desktop.
This file contains 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
// nice technique for generating arrays for testing | |
const vintages = Array.from({ length: 15 }, (value, index) => ({ | |
id: index, | |
year: 1998 + index, | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment