JS determines whether a string is included with a string, and if the array contains an element;

Source: Internet
Author: User

Requirements: End A string does it contain another string?

Realize:

var str = "ADC";

Determine if STR contains "C"

if ( str.indexof ("C") >0) {

Alert ("str contains string C")

}

Requirements: End An array contains an element?

A JS prototype chain is needed:

The following code is to add the contains method to the array meaning: As long as the array will have this method

    Array.prototype.contains = function ( needle ) {        for (i in this ) {          if ( this [i] == needle) return true ;        }        return false ;     }Usage: Example:
    var x = Array();或var x = [];     if (x.contains( ‘foo‘ )) {        // 包含foo做什么事情;     }

JS determines whether a string is included with a string, and if the array contains an element;

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.