I need some help with concatenating in Javascript.
I’ve got an array. The value of:
(args['type'])
is TERRAIN.
In another array, I’ve got:
var myOptions = {
zoom: parseInt( args['zoom'] ),
center: latlng,
mapTypeId:
};
I want to set mapTypeId to google.maps.MapTypeId.TERRAIN (using whatever value is held in args['type'] instead of hardcoding TERRAIN ).
How do I concatenate it in this situation?
To dynamically call object properties you can use this syntax.
args.typeandargs['type']are functionally identical.