Replies: 3 comments 2 replies
-
|
very important question: how to get length? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
how it looks toString? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
What about array_sort ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Let's think about array behaviour.
let c=[0,2.0,"Str"];
print(c[1]); // 0
let c[0] = 12;
print(c[1]); // 12
print(size(c)) ; // 3
let c=c +[1];
print(c); // [0, 2.0 , "Str", 1]
let c=c +[[2]];
print(c); // [0, 2.0, "Str", 1, [1]]
1 vote ·
Beta Was this translation helpful? Give feedback.
All reactions