The Object values() static method returns an array of the enumerable values of the object.

    
    const flight = {
      start: "Detroit",
      end: "Miami",
      airline: "Delta",
      jet: 767
    };

    const flightObjValues = Object.values(flight);

    console.log(flightObjValues);
    // ["Detroit", "Miami", "Delta", 767]


    // related example
    // given a property/key, get its value
    console.log(flight.airline);
    // "Delta"