Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880752f commit c73b6b1Copy full SHA for c73b6b1
Week3/prep-exercises/1-hyf-program/1-find-mentors.js
@@ -22,7 +22,6 @@ console.log(possibleMentorsForModule('using-apis'));
22
* It should return a single name.
23
*/
24
const findMentorForModule = (moduleName) => {
25
- // TODO complete this function
26
const possibleMentors = possibleMentorsForModule(moduleName);
27
return possibleMentors[Math.floor(Math.random() * possibleMentors.length)];
28
};
0 commit comments