Created
May 4, 2020 14:03
-
-
Save Roger-Melo/ebc97a43498aa8ec38b3f773ae32c3c7 to your computer and use it in GitHub Desktop.
Boilerplate para um caso de uso do filter()
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
const users = [ | |
{ name: 'Ada Lovelace', premium: true }, | |
{ name: 'Grace Hopper', premium: false }, | |
{ name: 'Alan Turing', premium: true }, | |
{ name: 'Linus Torvalds', premium: false }, | |
{ name: 'Margaret Hamilton', premium: true } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment