JavaScript Get Last Element Of Array Without Removing It

In this tutorial we will see how to Get Last Element Of Array Without Removing It in JavaScript. JavaScript length property can be used to get last element of array. length property is fully supported in all browsers.

JavaScript length property

The JavaScript length property returns the number of elements in the array.

We can also use pop() method to get last element of our array. But pop() method removes the last element from the array.

JavaScript Code

Take a look at the JavaScript code, the length property will give us the total number of elements in the array.

Then by using length - 1 as index number we can get the last element of array.

This trick works with all types of arrays.

.write() method is used to display the last element of array.

<script>
const lang = ['HTML','CSS','JAVASCRIPT','PHP'];
var x = lang.length - 1;
var lastElement = lang[x];
document.write('Last Element: ' + lastElement);
document.write('<br>');
document.write('Array: ' + lang);  
</script>

Demo

Video Tutorial

Watch our video tutorial.

Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript Change id of Element with JavaScript JavaScript Change li Text Color