A
Archos
I've created a custom type named person:
function person(name, age) {this.name=name; this.age=age;}
Now, how to create an array (of 10 elements) of that new type?
[10]person
function person(name, age) {this.name=name; this.age=age;}
Now, how to create an array (of 10 elements) of that new type?
[10]person