var test = [
{test1: 1, test2: 2},
{test3: 3}
];
console.log(test[0].length);
Im basically trying to find a new to find the length of for example test[0] which would be 2, and test[1] which would be 1. Im not good at javascript and would need to know this for a school profect