const array = []; Object.entries(object).forEach(([key, value]) => array.push(value)); console.log(array) // [ 1, 2, 3 ]