Skip to content

Instantly share code, notes, and snippets.

@buymed-hoangpham
Last active September 11, 2022 09:27
Show Gist options
  • Save buymed-hoangpham/79aa49f61ba2b863c215b07aefcdbe5c to your computer and use it in GitHub Desktop.
Save buymed-hoangpham/79aa49f61ba2b863c215b07aefcdbe5c to your computer and use it in GitHub Desktop.
6
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