Access last element of a TypeScript array

前端 未结 5 838
走了就别回头了
走了就别回头了 2021-02-06 20:23

Is there a notation to access the last element of an array in TypeScript? In Ruby I can say: array[-1]. Is there something similar?

5条回答
  •  余生分开走
    2021-02-06 20:43

    You can access the array elements by it's index. The index for the last element in the array will be the length of the array-1 ( as indexes are zero based).

    This should work.

    var items: String[] = ["tom", "jeff", "sam"];
    
    alert(items[items.length-1])
    

    Here is a working sample.

提交回复
热议问题