i have this array:
const array = [ 'one', 'two', 'three' ]
I'd like to convert this array into an object without indexes. How would this be possible?
i have this array:
const array = [ 'one', 'two', 'three' ]
I'd like to convert this array into an object without indexes. How would this be possible?