Page 1 of 1

Array

Posted: Thu Aug 26, 2021 8:35 pm
by loulou2522
I want to pass an array from spiderbasic to javascript

Code: Select all

Dim myarray.s(2)
myarray(1)="TOTO"
myarray(2)="TITI"


Procedure java( tableau(2) )
!alert v_tableau(1);
EndProcedure 

java(myarray(2))
But that's doesnt'work

Re: Array

Posted: Thu Aug 26, 2021 9:37 pm
by Peter