JSFiddle - React, Tailwind, and code Playground

by Nicolas PUJOL

JavaScript

var nombres = [{'h':160, 'w': 600}, {'h':468, 'w': 60}];
var doubles = nombres.map(function(obj) {
  return obj.h + 'x' + obj.w;
});

console.log(doubles);