Last active
September 11, 2022 09:27
-
-
Save buymed-hoangpham/79aa49f61ba2b863c215b07aefcdbe5c to your computer and use it in GitHub Desktop.
6
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 channels = [ | |
| { name: 'HBO', premium: true }, | |
| { name: 'LIFE', premium: false }, | |
| { name: 'Max', premium: true }, | |
| { name: 'Cooking channel', premium: false }, | |
| { name: 'WOBI', premium: false }, | |
| ]; | |
| const premiumChannels = channels.filter((channel) => channel.premium); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment