“JS Arrays Indexof” Code-Antworten

JS Arrays Indexof

function quickCheck(arr, elem) {
  if (arr.indexOf(elem) >= 0) {
    return true;
  }
  return false;
}
console.log(quickCheck(["squash", "onions", "shallots"], "mushrooms"));
Energetic Emu

JS Arrays Indexof

function quickCheck(arr, elem) {
  return arr.indexOf(elem) != -1;
}
console.log(quickCheck(["squash", "onions", "shallots"], "mushrooms"));
Energetic Emu

JS Arrays Indexof

function quickCheck(arr, elem) {
  return arr.indexOf(elem) >= 0 ? true : false;
}
console.log(quickCheck(["squash", "onions", "shallots"], "mushrooms"));
Energetic Emu

Ähnliche Antworten wie “JS Arrays Indexof”

Fragen ähnlich wie “JS Arrays Indexof”

Weitere verwandte Antworten zu “JS Arrays Indexof” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen