如何以降序(反向)顺序访问javascript数组?

时间:2017-03-24 05:13:20

标签: javascript php mysql arrays

var content1    =  eval ("(" + data + ")");
var content    =  content1.Data;  
for (property in content) {console.log(content[property].name); }

我需要按降序访问此内容数组。现在它工作正常,但不是我想要的方式。它打印数组中的第一个元素。

我想首先打印最后一个元素。 MySQL提供了降序结果集,但这首先用于循环打印第一个id元素。

1 个答案:

答案 0 :(得分:1)

你可以从相反的长度做。

你可以reverse()数组



var array = [1,2,3];

for (var item of array.reverse())
{
  console.log(item);
}

console.log(" ");


var other = ["first", "second", "third"];

for (var i = other.length - 1; i >= 0; i--)
{
  console.log(other[i]);
}