I have an array which have value of id, email and password.
let array = [
{id: hyu, email: [email protected], password: 123},
{id: rft, email: [email protected], password: 456},
{id: ght, email: [email protected], password: 789},
{id: kui, email: [email protected], password: 679}
]
Now I would like to return that object when my condition is matched. For that I created a function using javascript some
function but I want to return the object and we know that some
function return boolean.
I don't have any idea how to do this.
My code is:
const isEmailExists = (email, array) => {
return array.some(function(el) {
return el.email === email;
});
};
if (isEmailExists("[email protected]", array) == true) {
// I want to work here with returned objects i.e on success case
} else {
// error case
}
Any help is really appreciated