jkabot
Object.values(obj)
var values = []; for (var prop in obj) { if (obj.hasOwnProperty(prop) { values.push(obj[prop]); } }
badazzke