Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8702987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:46:55+00:00 2026-06-13T02:46:55+00:00

Working on a js app involving many objects, I want to be able to

  • 0

Working on a js app involving many objects, I want to be able to grab an object by a specific variable. Here is my code:

var pin = '0000';

$.each(employees, function(){
    if(this.pin === pin){
        curEmployee = this;
        return false;
    }
});

Though this approach works, I have a feeling that there are way better solutions out there… I was fiddling around with grep and tried:

var pin = '0000';

curEmployee = $.grep(employees, function(e,i){
    return e[pin] === pin;
});

However, it is harder to determine a result, since now I will need to check the length to see if an array with provided back, and such.

Just looking for a best practices solution.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T02:46:56+00:00Added an answer on June 13, 2026 at 2:46 am

    Since an Array is always returned from $.grep, just get the [0] index of the Array. If undefined, there was no match.

    var pin = '0000';
    
    curEmployee = $.grep(employees, function(e,i){
        return e.pin === pin;
    })[0]; // <--- always grab the first index
    

    Without jQuery, you could use Array.prototype.filter in the same manner:

    var pin = '0000';
    
    curEmployee = employees.filter(function(e,i){
        return e.pin === pin;
    })[0];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm quite new to drawing in Cocoa, and working on an experimental app involving
For an existing working app, I want to provide a secondary AuthenticationProvider, probably with
I'm working on a educational app involving complex scripts in which I paint parts
Up until yesterday I had a perfectly working app on my iPhone. I made
I am working on App which will set an alarm on ios for a
I've been working with app engine for quite some time, I know that there
i am working on app which deals with proximity alerts. I can add proximity
I had a working Active Admin app working on my local server, but after
I have my php app working fine, performing some other Graph API functions. However,
I've got a nice little web app working that brings down playlists and videos

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.