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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:44:39+00:00 2026-05-23T04:44:39+00:00

I have a question similar to this one , except with Javascript instead of

  • 0

I have a question similar to this one, except with Javascript instead of C#.

Basically, I want to be able to do pattern matching on an expression instead of using a long list of if statements, like this:

var person.annoyingAction = match([person.gender, person.ageGroup],
      [male, child], breakingStuff,
      [male, teenager], drivingRecklessly,
      [male, adult], beingLazyAfterComingHomeFromWork
      [female, child], screechingInAnUnbelievablyHighPitchedVoice,
      [female, teenager], knowingEverything,
      [female, adult], askingPeopleIfTheyThinkIAmTooFat
      [_, baby], cryingEveryTwoHoursAtNight,
      [_,_], beingHuman);

Does anybody know how to implement something that would do something like this in Javascript?

  • 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-23T04:44:40+00:00Added an answer on May 23, 2026 at 4:44 am

    I don’t know of an existing, clean, solution, but here is a simple implementation that matches what your example:

    var match = function(target) {
      for (i = 1; i < arguments.length; i += 2) {
        if (target[0] == arguments[i][0] && target[1] == arguments[i][1]) {
          return arguments[i + 1];
        }
      }
    }
    

    Example use:

    var result = match(["Yellow", "Food"],
      ["Red", "Food"], "Apple",
      ["Green", "Plant"], "Grass",
      ["Yellow", "Thing"], "Schoolbus",
      ["Yellow", "Food"], "Banana",
      ["Yellow", "Foot"], "Bad"
    )
    
    alert(result) # displays "Banana"
    

    In JavaScript you can’t compare arrays directly ([1, 2] != [1, 2]) so you need to compare the elements individually.

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

Sidebar

Related Questions

I have a similar question to this one SQL products/productsales I want to do
This question is quite similar to this one . Except that I want to
I have a question similar to the one here: Event handlers inside a Javascript
Note this question is similar this one except I'm not working with linq-to-sql, so
Similar questions to this one have been asked but none seem to address my
My question is similar to this one: need to call soap ws without wsdl
This question is similar to this one about animation queues , but the answers
Similar to this question I have a custom subclass of UITableViewCell that has a
Note: This is the opposite direction to most similar questions! I have an iPhone
I have asked a similar question before, but I didn't have a firm grasp

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.