Skip to content
Advertisement

Javascript in array then return key

I’m trying to find the ean codes from below array in the variantCodesObject. That part I can get working however I’m struggeling to return the key from the variantCodesObject.

JavaScript

In above example how do I get for ean 7350038272416 the key value 261584049?

I tried something like this:

JavaScript

But that returns the full variantCodesObject.

Advertisement

Answer

You can do this by checking the value of the object in the variantCodesObject against the .ean property on each cart item. If it matches, do whatever you’d like with the key

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement