JavaScript method to determine whether an array contains a specified element. javascript Array

Source: Internet
Author: User
Tags javascript array

JavaScript method to determine whether an array contains a specified element. javascript Array

This example describes how to use JavaScript to determine whether an array contains a specified element. Share it with you for your reference. The details are as follows:

This Code defines the array method through prototype, so that the contains method can be called in any array.

/*** Array. prototype. [method name] allows you to define/overwrite an objects method * needle is the item you are searching for * this is a special variable that refers to "this" instance of an Array. * returns true if needle is in the array, and false otherwise */Array. prototype. contains = function (needle) {for (I in this) {if (this [I] = needle) return true;} return false ;}

Usage:

// Now you can do things like: var x = Array (); if (x. contains ('foo') {// do something special}

I hope this article will help you design javascript programs.

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.