Last active
December 15, 2020 15:05
-
-
Save samuelpath/e31d18f83e8db94ed76ceee3b94cc377 to your computer and use it in GitHub Desktop.
Revisions
-
samuelpath revised this gist
Dec 15, 2020 . 1 changed file with 2 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 @@ -9,6 +9,8 @@ const jobs = [ const jobsWithIdsMultipliedByTen = jobs.map(idMultiplier); /* Voici le contenu attendu dans jobsWithIdsMultipliedByTen : const jobsWithIdsMultipliedByTen = [ { id: 10, isActive: true }, { id: 20, isActive: true }, -
samuelpath revised this gist
Dec 15, 2020 . 1 changed file with 9 additions and 1 deletion.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 @@ -6,4 +6,12 @@ const jobs = [ // const idMultiplier = const jobsWithIdsMultipliedByTen = jobs.map(idMultiplier); /* const jobsWithIdsMultipliedByTen = [ { id: 10, isActive: true }, { id: 20, isActive: true }, { id: 30, isActive: false } ]; */ -
samuelpath revised this gist
Dec 15, 2020 . 1 changed file with 3 additions and 1 deletion.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 @@ -4,4 +4,6 @@ const jobs = [ { id: 3, isActive: false } ]; // const idMultiplier = const idsMultipliedByTen = jobs.map(idMultiplier); -
samuelpath created this gist
Dec 15, 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,7 @@ const jobs = [ { id: 1, isActive: true }, { id: 2, isActive: true }, { id: 3, isActive: false } ]; // const idsMultipliedByTen =