📅  最后修改于: 2022-03-11 15:02:16.886000             🧑  作者: Mango
const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"