Home >Web Front-end >JS Tutorial >JavaScript method to delete array elements_javascript tips

JavaScript method to delete array elements_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:08:091420browse

The example in this article describes how to delete array elements in JavaScript. Share it with everyone for your reference. The specific analysis is as follows:

You can delete array elements in JS through delete, but the size of the array will not change after deletion

<script type="text/javascript">
<!--
var days = ["Sunday","Monday","Tuesday","Wednesday",
  "Thursday","Friday","Saturday"];
document.write("Number of days:"+days.length);
  delete days[4];
document.write("<br />Number of days:"+days.length);
//-->
</script>

Output results

Number of days:7
Number of days:7

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn