array = [["white", "goodness"], ['green', 'mood']];
function colourAssociation(array) {
let result = [];
array.reduce((obj, elem) => {
obj = {};
obj[elem[0]] = elem[1];
return result.push(obj);
}, {})
return result
}
console.log(colourAssociation(array))
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter