Home > Web Front-end > JS Tutorial > body text

JavaScript method to delete array elements_javascript tips

WBOY
Release: 2016-05-16 16:08:09
Original
1392 people have browsed it

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>
Copy after login

Output results

Number of days:7
Number of days:7
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template