I am new to javascript basics and am learning it now.
So I would like to know why the following code has an additional 'Value' column for 'name' variable instead of considering it as a normal variable and assigning each string to an index.
var name=['Jane','Beulah','Jai'];
var age=[21,21,20];
var city=['BLR','COI','CHN'];
console.table([name,age,city]);
Actual Output:
I seem to get the correct output if I change the variable from 'name' to someother different name. Is it because name is a keyword for console.table()? or is it because of some other reason?