What type of data is this JavaScript code!?
Posted
by SolidSnakeGTI
on Stack Overflow
See other posts from Stack Overflow
or by SolidSnakeGTI
Published on 2010-04-02T08:29:53Z
Indexed on
2010/04/02
8:33 UTC
Read the original article
Hit count: 360
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
© Stack Overflow or respective owner