Is it possible I can get outputs : five four three two one
Here is my example Code
var arr = ['one','two','three','four','five'];
$.each(arr, function (index, value) {
console.log(value);
});
//now i am getting Outputs: one two three four five
Any ideas, guys?