“TypeScript Last Index of Array” Ответ

Последний индексный массив JavaScript

var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
Grepper

TypeScript Last Index of Array

var items: String[] = ["tom", "jeff", "sam"];

alert(items[items.length-1])
akademik

Ответы похожие на “TypeScript Last Index of Array”

Вопросы похожие на “TypeScript Last Index of Array”

Больше похожих ответов на “TypeScript Last Index of Array” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования