Skip to content

Instantly share code, notes, and snippets.

@shayanjm
Forked from morenoh149/program.js
Created June 17, 2014 00:53
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 shayanjm/b552957345bed129c532 to your computer and use it in GitHub Desktop.
Save shayanjm/b552957345bed129c532 to your computer and use it in GitHub Desktop.
// problem 05 every some
/*
Return a function that takes a list of valid users, and returns a function that returns true
if all of the supplied users exist in the original list of users.
You only need to check that the ids match.
## Example
var goodUsers = [
{ id: 1 },
{ id: 2 },
{ id: 3 }
]
// `checkUsersValid` is the function you'll define
var testAllValid = checkUsersValid(goodUsers)
testAllValid([
{ id: 2 },
{ id: 1 }
])
// => true
testAllValid([
{ id: 2 },
{ id: 4 },
{ id: 1 }
])
// => false
## Arguments
* goodUsers: a list of valid users
Use array#some and Array#every to check every user passed to your returned
function exists in the array passed to the exported function.
## Resources
* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/every
* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/some
## Boilerplate
function checkUsersValid(goodUsers) {
return function(submittedUsers) {
// SOLUTION GOES HERE
};
}
module.exports = checkUsersValid
*/
function isInGoodUsers(submittedUser, index, array){
return goodUsers.some(function(goodUser, index, array){
return goodUser.id === submittedUser.id;
});
}
function checkUsersValid(goodUsers){
return function(submittedUsers){
submittedUsers.every(isInGoodUsers);
};
}
module.exports = checkUsersValid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment