What language is used in Google Desktop gadgets?
        Posted  
        
            by Claudiu
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Claudiu
        
        
        
        Published on 2010-04-10T19:50:14Z
        Indexed on 
            2010/04/10
            19:53 UTC
        
        
        Read the original article
        Hit count: 470
        
The language Google Desktop gadgets use resembles JavaScript, but it's different in subtle ways. For example, I saw this line in a gadget:
options(HISTORY_OPTIONS_NAME) = items_.join("|");
which looks like it's assigning to a function call. That's just not OK in JavaScript... what language is this? And what exactly is that line doing?
© Stack Overflow or respective owner