“Atrapa el último artículo en una matriz js” Código de respuesta

JS Tome el último artículo en la matriz

const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Strange Starling

Obtenga el último elemento en Array JavaScript

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

JavaScript Tome el último elemento de matriz

let array = [1,2,3,4,5];
let lastElement = array.pop();

// array -> [1,2,3,4];
// lastElement = 5;
Nice Nightingale

Atrapa el último artículo en una matriz js

function(code){
 	let lastItemArray = ''
  	console.log(code)
  	for(let i = 0; i < code.length; i++){
      if(i == code.length - 1)
      {
        lastItemArray = code[i]
      }
	}
  	return lastItemArray
}
console.log([1,2,3,4,5])
Wide-eyed Wolf

Respuestas similares a “Atrapa el último artículo en una matriz js”

Preguntas similares a “Atrapa el último artículo en una matriz js”

Más respuestas relacionadas con “Atrapa el último artículo en una matriz js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código