How can I iterate through all values of an Object in TypeScript that I want to use for filtering another array?
I have searched on Google and came across Object.values()
, but it seems like it doesn't work in TypeScript.
Is there an equivalent method that I can use in TypeScript for this purpose?