okuznetsov1,
var arr = [
{Rank:1,Country:"Moscow",US$:"101994"},
{Rank:2,Country:"Luxembourg",US$:"101"},
{Rank:3,Country:"Monaco",US$:"1019"}
]
var dataCharts = { cols: [{id: "year",label: "Год",type: "string"}]};
arr.forEach(function (element, index) {
dataCharts.cols.push( {id: element.Rank,label: element.Country,type: element.US$} );
});
dataCharts.rows = ["не понимаю что вы тут хотите сделать"] ;
console.log(dataCharts);