I have a quick question about returning the values from an object using JavaScript.
More specifically I want to write a function that takes an object as a parameter and then returns the values in an array.
I know that its easy to do this with the object keys as one can just use object.keys(), but I was wondering if there was a good way to do this for values?
Sorry if this is a basic question, I've done some searching around and can't seem to find anything that helps.