“MDN obejmuje” Kod odpowiedzi

MDN. W tym

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

MDN obejmuje

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

Odpowiedzi podobne do “MDN obejmuje”

Pytania podobne do “MDN obejmuje”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu