Answers for "is in array"

PHP
14

in_array php

<?php
$os = array("Apple", "Banana", "Lemon");
if (in_array("Apple", $os)) {
    echo "Yeah. Exist Apple";
}
if (!in_array("Buleberry", $os)) {
    echo "Oh, Don't Exist Blueberry!!!";
}
?>
Posted by: Guest on October-02-2020
12

javascript element in array

var fruits = ["Banana", "Orange", "Apple", "Mango"];

var n = fruits.includes("Mango");
Posted by: Guest on March-02-2020
2

js in_array

var a = [1, 2, 3];
a.includes(2); // true 
a.includes(4); // false
Posted by: Guest on July-28-2020

Browse Popular Code Answers by Language