the following syntax is wrong, as stated in the “Servoy_Advanced_Programming_Guide.pdf” :
var myArray = new array(4);
var myArray = new Array(4);
is right.
Dieter
the following syntax is wrong, as stated in the “Servoy_Advanced_Programming_Guide.pdf” :
var myArray = new array(4);
var myArray = new Array(4);
is right.
Dieter
The syntax has been corrected.
var myArray = new array(4)
now reads:
var myArray = new Array(4)
The change will be available in the next update of the Servoy_Advanced_Programming_Guide – both for the pdf and the print version.