What type of data is this JavaScript code!?
- by SolidSnakeGTI
Hello,
Well, I'm completely new to JavaScript.
Can you please tell me what type of data is this JavaScript code:
var options =
{
sourceLanguage: 'en',
destinationLanguage: ['hi', 'bn', 'fa', 'gu', 'kn', 'ml', 'mr', 'ne', 'pa', 'ta','te','ur'],
shortcutKey: 'ctrl+g',
transliterationEnabled: true
};
I've reviewed JavaScript arrays, but it doesn't seem to be a traditional array.
Still don't know if it's some kind of arrays or another data type!!
Additionally, is there any way to set individual elements to that data type such as setting array elements individually.
Thanks in advance