dataBase = [
{
fullName : '',
dateOfBirth : '',
address : '',
faculty : '',
spetsial : '',
course : '',
institution : ''
},
{
fullName : '',
dateOfBirth : '',
address : '',
faculty : '',
spetsial : '',
course : '',
institution : ''
}
...
];
dataBase[1].fullName
dataBase = {
'1' : {
fullName : '',
dateOfBirth : '',
address : '',
faculty : '',
special : '',
course : '',
institution : ''
},
'2': {
fullName : '',
dateOfBirth : '',
address : '',
faculty : '',
special : '',
course : '',
institution : ''
}
...
};