Reputation: 17094
i have the following array:
SoftwareBadges =
[
{ Title: "Playtech", Guid: "7e9", xPos: "96" },
{ Title: "BetSoft", Guid: "890", xPos: "169" },
{ Title: "WagerWorks", Guid: "35c", xPos: "242" },
{ Title: "Rival", Guid: "c35", xPos: "314" },
{ Title: "NetEnt", Guid: "59e", xPos: "387" },
{ Title: "MicroGaming", Guid: "19a", xPos: "460" },
{ Title: "Cayetano", Guid: "155", xPos: "533" },
{ Title: "OpenBet", Guid: "cfe", xPos: "607" },
{ Title: "RTG", Guid: "4e6", xPos: "680" },
{ Title: "Cryptologic", Guid: "05d", xPos: "753" },
{ Title: "CTXM", Guid: "51d", xPos: "827" },
{ Title: "Sheriff", Guid: "63e", xPos: "898" },
{ Title: "Vegas Tech", Guid: "a50", xPos: "975" },
{ Title: "Top Game", Guid: "0d0", xPos: "1048" },
{ Title: "Party Gaming", Guid: "46d", xPos: "1121" }
]
now, i need to check if on of them contains a value, and return the object for example:
var test = "7e9" // Guid
how do i get the object that contains this Guid value ?
in the sample , it should return the PlayTech
Object.
in C# using linq i could do something like:
var x = SoftwareBadges.Where(c => c.Guid == test)
how can i do this in javascript ?
Upvotes: 6
Views: 13273
Reputation: 1291
As associative array you can try this:
for (var s in SoftwareBadges) {
if (SoftwareBadges[s]["Guid"] == "7e9")
alert(SoftwareBadges[s]["Title"]);
}
Upvotes: 8
Reputation: 18219
Array#filter
may come handy
(SoftwareBadges.filter(function(v) {
return v['Guid'] == '7e9';
}))[0]
Note that filter
is a part of ECMA5 and may not be available in some browsers.
You may see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/filter for detailed document.
Upvotes: 3