Financial Statement Data

Overview


Financial data from financial statements can come from many different formats.

Data as Name Value Pairs





let newData = [];
for(let item of data){
	for(let key in item){
		if(key !== 'date')newData.push({
			date:item.date,
			name:key,
			value:item[key]
		})
	}
}

					


Contents