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 contains one of them and returns an object, for example:
var test = "7e9"
how to get an object containing 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?