Skip to content

Instantly share code, notes, and snippets.

@AndrewBuntsev
Created May 25, 2020 02:17
Show Gist options
  • Save AndrewBuntsev/268279f9cb790a80f9d6a0d620475ae3 to your computer and use it in GitHub Desktop.
Save AndrewBuntsev/268279f9cb790a80f9d6a0d620475ae3 to your computer and use it in GitHub Desktop.
const movies = [
{
"Title": "Inception",
"Year": "2010",
"Director": "Christopher Nolan"
},
{
"Title": "Interstellar",
"Year": "2014",
"Director": "Christopher Nolan"
},
{
"Title": "Avatar",
"Year": "2009",
"Director": "James Cameron"
},
{
"Title": "The Dark Knight",
"Year": "2008",
"Director": "Christopher Nolan"
},
{
"Title": "Batman Begins",
"Year": "2005",
"Director": "Christopher Nolan"
}
];
console.table(movies.groupBy('Director'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment