Skip to content

Instantly share code, notes, and snippets.

@qmacro
Last active April 13, 2020 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qmacro/7dcab532e7029ac1a1042bcf9f29f3af to your computer and use it in GitHub Desktop.
Save qmacro/7dcab532e7029ac1a1042bcf9f29f3af to your computer and use it in GitHub Desktop.
Code at Home Ep.8
const episodes = [
{
number: 1,
title: 'Setting up for our first challenge'
},
{
number: 2,
title: 'Fizz-Buzz and Fibonacci'
},
{
number: 3,
title: 'Solving a Fibonacci related challenge'
},
{
number: 4,
title: 'Figuring out sentence statistics'
},
{
number: 5,
title: 'More on array and array functions'
},
{
number: 6,
title: 'Solving the palindromic products puzzle'
},
{
number: 7,
title: 'Looking at sort functions'
}
]
const episodes = [
{
number: 1,
title: 'Setting up for our first challenge',
date: new Date('27 Mar 2020')
},
{
number: 2,
title: 'Fizz-Buzz and Fibonacci',
date: new Date('30 Mar 2020')
},
{
number: 3,
title: 'Solving a Fibonacci related challenge',
date: new Date('01 Apr 2020')
},
{
number: 4,
title: 'Figuring out sentence statistics',
date: new Date('03 Apr 2020')
},
{
number: 5,
title: 'More on array and array functions',
date: new Date('06 Apr 2020')
},
{
number: 6,
title: 'Solving the palindromic products puzzle',
date: new Date('08 Apr 2020')
},
{
number: 7,
title: 'Looking at sort functions',
date: new Date('10 Apr 2020')
}
]
const episodes = [
{
number: 1,
title: 'Setting up for our first challenge',
date: new Date('27 Mar 2020'),
stats: { views: 341, likes: 32 }
},
{
number: 2,
title: 'Fizz-Buzz and Fibonacci',
date: new Date('30 Mar 2020'),
stats: { views: 102, likes: 7 }
},
{
number: 3,
title: 'Solving a Fibonacci related challenge',
date: new Date('01 Apr 2020'),
stats: { views: 65, likes: 2 }
},
{
number: 4,
title: 'Figuring out sentence statistics',
date: new Date('03 Apr 2020'),
stats: { views: 66, likes: 5 }
},
{
number: 5,
title: 'More on array and array functions',
date: new Date('06 Apr 2020'),
stats: { views: 42, likes: 2 }
},
{
number: 6,
title: 'Solving the palindromic products puzzle',
date: new Date('08 Apr 2020'),
stats: { views: 39, likes: 3 }
},
{
number: 7,
title: 'Looking at sort functions',
date: new Date('10 Apr 2020'),
stats: { views: 46, likes: 5 }
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment