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 7504207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:29:48+00:00 2026-05-29T21:29:48+00:00

if I have an array like this: var msg = [ {name: [a1, a2],

  • 0

if I have an array like this:

var msg = [ {name: ["a1", "a2"], value: "this is A"},
            {name: ["b1", "b2"], value: "this is B"},
            ...
          ]

The array contains global errors messages for client-side form validations. I have managed to pass in faulty inputs (e.g. “a1”) and now am wondering how to get the corresponding message out of my ill-constructed array.

Question
What would be the best way to loop through this array? for example, if I have “a1” as parameter passed into my function, how do I extract “this is A” as corresponding message?

inArray doesn’t really help, because I need the corresponding message and not the position of a1. I’m also not sure if this is the best way to store my error messages… ideas welcome!

Thanks for help!

  • 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-29T21:29:49+00:00Added an answer on May 29, 2026 at 9:29 pm

    Re-arrange your data structure:

    var my_param = 'b1';
    
    // This is an object, so we can have key/value pairs
    var error_codes =
    {
        'a1': 0,
        'a2': 0,
        'b1': 1,
        'b2': 1
    };
    
    // This is an array because we only need values
    var error_messages =
    [
        'This is A',
        'This is b'
    ];
    
    alert(error_messages[error_codes[my_param]]);
    

    This makes it really easy to set up new error codes and messages, and is extremely easy to understand. The only gotcha is error_codes[my_param] – it’s an object, but we can’t do error_codes.my_param because it’ll look for the element called ‘my_param’, so using array notation, we can look up the object key.

    The only other potential trap is making sure you don’t have any trailing commas:

    var error_codes = { 'a1': 1, }; // NO!
    

    Also knows as the trailing comma of death!

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

Sidebar

Related Questions

I have an array like this: var anArray = [ { name: scala, type:
I have an array like this: var movies = [ { Name: The Red
I have an array of objects, like this: var companies = [ { name
I have an array like this: var arr1 = [a, b, c, d]; How
Say, I have an array that looks like this: var playlist = [ {artist:Herbie
I have an array of function callbacks, like this: class Blah { private var
I have an array like this: var gridArray = [ 1,2,0,1,2,3,2,1,2,3,4,4,3,2,2,2,0 ] And I
I have an array declared like this: var dict = []; When I do
When I have an array like this: var grid = Array([1,1,1],[1,0,1],[1,1,1]); And when you
Imagine I have an JS array like this: var a = [1, 2, 3,

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.