0

Reading values in array

Consider:

let aLetters := ["a","b","c"]
let vRes := myArray[1]

I would expect vRes to hold the 2nd element of the array but instead, the entire contents of the array is returned. Can you help with the syntax?

1 reply

null
    • Leonid_Semik
    • 6 yrs ago
    • Reported - view

    Hi,

     

    let myArray:=["a","b","c"];

    let vRes:=item(myArray,1)

     

    regards

    Leo

Content aside

  • 6 yrs agoLast active
  • 1Replies
  • 2235Views