Hi guys,
I know this might be out of the question but i need your help. how would i access a number inside an array which is inside of an array?.
this is what i mean.
function openOrSenior(data){
console.log(data);
}
//How would i access just the number 20 and log that into a console for example?
openOrSenior([[18, 20],[45, 2],[61, 12],[37, 6]]);
Thank you for your help much appreciated.
This is a little program i’m working on.