Last active
April 13, 2020 11:36
-
-
Save qmacro/7dcab532e7029ac1a1042bcf9f29f3af to your computer and use it in GitHub Desktop.
Revisions
-
qmacro revised this gist
Apr 13, 2020 . No changes.There are no files selected for viewing
-
qmacro revised this gist
Apr 13, 2020 . 1 changed file with 0 additions and 44 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,44 +0,0 @@ -
qmacro revised this gist
Apr 13, 2020 . 3 changed files with 111 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ 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' } ] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ 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') } ] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ 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 } } ] -
qmacro revised this gist
Apr 13, 2020 . 1 changed file with 37 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,42 @@ 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 } } ] -
qmacro created this gist
Apr 13, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ const episodes = [ { number: 1, title: 'Setting up for our first challenge', date: new Date('27 Mar 2020'), stats: { views: 341, likes: 32 } } ]