Experience the power of splice () in js

Source: Internet
Author: User
There are many ways to process arrays. splice () is the most powerful. It can be used to insert, delete, or replace array elements. Here is a one-to-one introduction! 1. Delete-used to delete an element. There are two parameters: the first parameter (the location of the first item to be deleted) and the second parameter (the item to be deleted ).

There are many ways to process arrays. splice () is the most powerful. It can be used to insert, delete, or replace array elements. Here is a one-to-one introduction!

1. Delete-used to delete an element. There are two parameters: the first parameter (the location of the first item to be deleted) and the second parameter (number of items to be deleted)

2. Insert-insert any element to the specified position of the array. Three parameters: the first parameter (actual location), the second parameter (0), and the third parameter (inserted item)

3. replace-insert any element to the specified position of the array, and delete any number of items, three parameters. The first parameter (start position), the second parameter (number of deleted items), and the third parameter (insert any number of items)

You can see the following code!


Var lang = ["php", "java", "javascript"]; // Delete var removed = lang. splice (); alert (lang); // php, javascriptalert (removed); // java, return the deleted item // insert var insert = lang. splice (0th, "asp"); // insert alert (insert) from the first position; // return an empty array alert (lang); // asp, php, javascript // replace var replace = lang. splice (, "c #", "ruby"); // delete an item and insert two alert (lang); // asp, c #, rubyalert (replace ); // php, return the deleted item
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.