I would like to comapre two arrays of strings
how could I affect the following values to a
,b
,c
,d
, when I try as below, I got an error
[a,b,c,d] = getVal(x);
=>this will gives :
a =
a
b=
0
c =
10
d =
[]
and I have :
expected = {'a','0','10',[]};
how could I make the comparison between [a,b,c,d] and expected ?