“JavaScript inclut l'objet de vérification” Réponses codées

L'objet JavaScript comprend

const person = {
  first_name: "Sam",
  last_name: "Bradley"
};

Object.values(person).includes("Bradley");
skull_is_dull

JavaScript inclut l'objet de vérification

let hasMagenicVendor = vendors.some( vendor => vendor['Name'] === 'Magenic' )
Jealous Jackal

JS fait l'objet contenant de la valeur

// You can turn the values of an Object into an array.
// Then test that a value is present:

// This assumes, that the Object is not nested
// and the value is an exact match:

var obj = { a: 'test1', b: 'test2' };

// Note that an array can only have positive index's; so
// checking for a negative index is a super valid way for getting a
// boolean value as a result for the check.
if (Object.values(obj).indexOf('test1') > -1) {
   console.log('Value exists!');
}
Av3

Réponses similaires à “JavaScript inclut l'objet de vérification”

Questions similaires à “JavaScript inclut l'objet de vérification”

Plus de réponses similaires à “JavaScript inclut l'objet de vérification” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code