JSFiddle - React, Tailwind, and code Playground

JavaScript

var Items = [
    {
        title : 'One',
        value : 1,
    },
    {
        title : 'Two',
        value : 2,
    }
]

var titles = Items.map(function(o) {
    return o.title;
});

console.log(titles)