“MDN incluye” Código de respuesta

MDN. INCLUCIONES

const array1 = [1, 2, 3];
console.log(array1.includes(2));
// expected output: true
Dizzy Dog

MDN incluye

const sentence = 'The quick brown fox jumps over the lazy dog.';
const word = 'fox';
console.log(`The word "${word}" ${sentence.includes(word) ? 'is' : 'is not'} in the sentence`);
// expected output: "The word "fox" is in the sentence"
Dizzy Dog

Respuestas similares a “MDN incluye”

Preguntas similares a “MDN incluye”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código