How to get last element of array in Javascript?
Whenever you require to get last element value then you can use bellow example. I give you three way to get last element value in jquery. So let's see following example:
Example
<script type="text/javascript">
var languages = ["PHP", ".Net", "Java", "Javascript"];
var last_element = languages[languages.length-1];
console.log(last_element);
var last_element2 = languages.pop();
console.log(last_element2);
var last_element3 = languages.slice(-1)[0];
console.log(last_element3);
</script>

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.