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

  • SEARCH
  • Home
  • 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 7070887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:37:14+00:00 2026-05-28T05:37:14+00:00

Trying to see if data in one array matches the data in another. I

  • 0

Trying to see if data in one array matches the data in another. I have an array of objects, like so –

var ProductsList =
[
{"Name": "Product A"; "Rating": "3"},
{"Name": "Product B"; "Rating": "2"},
{"Name": "Product C"; "Rating": "1"},
];

I then want to compare this product list with user selected values, which come in an array that I get based on the values they selected via checkboxes. So if they selected 1, 2, 3 – all products should be shown, if they selected 1 – then only product A is shown.

I tried to use $.grep to do the filtering but I’m running into an issue filtering via array values. Let’s hard code the user filer to all values as an example.

userFilterArray.Rating = [1, 2, 3];

function filter(ProductsList, userFilterArray)
filteredList = $.grep(ProductList, function(n) {
  return (n.Rating == userFilterArray.Rating);
});

Obviously this doesn’t work as I’m comparing n.Rating which is a string to an array but I’m not sure how to compare the string to string in this case.

Would grep be the easiest way to do this? Should I use a combo of .each .each? Maybe neither?

  • 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-05-28T05:37:15+00:00Added an answer on May 28, 2026 at 5:37 am

    After a bunch of syntax and other fixes, I think this is what you’re after:

    var ProductsList = [
       {"Name": "Product A", "Rating": 3},
       {"Name": "Product B", "Rating": 2},
       {"Name": "Product C", "Rating": 1}
    ];
    
    var userFilterArray = [1, 3];
    
    function filter(list, filterArr) {
        return $.grep(list, function(obj) {
            return $.inArray(obj.Rating, filterArr) !== -1;
        });
    }
    
    var filteredList = filter(ProductsList, userFilterArray)
    
    console.log( filteredList );
    

    DEMO: http://jsfiddle.net/vK6N9/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to send an Array from one player to another. I create
See updated input and output data at Edit-1. What I am trying to accomplish
I am trying to see if an element have a specific CSS attribute. I
I have a UITableView that was created from data coming from a mutable array.
I have a table like this: | X | Y | Data | ----------------
I'm trying to save data with following structure: As you can see, there is
i'm trying to make an array of value's to be checked to see if
I've been going bananas trying to get some data from Javascript on one page
I am trying to implement a resource data structure that includes an array of
I have to decode the binary content data of one of my Chrome cache

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.