0
Warum?
Moin moin!
Ich versteh die funktion slice() nicht so recht:
Die Doku zeigt:
slice(["Apfel","Bagel","Kuchen","Donut"], 1, 3)
Das Ergebnis ist "Bagel, Kuchen".
Warum ist das Ergebnis nicht "Bagel, Donut", sind die items nicht
0 = Apfel
1 = Bagel
2 = Kuchen
3 = Donut
?
Vielen Dank!
4 Antworten
-
Moin ,
in welcher Doku hast du geschaut?
Hier in der englischen ist es so beschrieben:
https://docs.ninox.com/en/script/functions-overview/functions/slice
This function helps you to extract a partial range of an array and transfer it to a new array. You define the part you want to extract by a start and an end position. Start and end position start with 0.
Also ist in dem Beispiel 1 die Startposition (inklusive und die ausgelesenen bis Position 2 (Endposition exkulsive!)
The start is inclusive, the end is exclusive.
Content aside
- Status Answered
- vor 9 MonatenZuletzt aktiv
- 4Antworten
- 57Ansichten
-
3
Folge bereits