Итераторы массива JavaScript

Я делаю это упражнение и не понимаю, почему оно не работает. Кто-нибудь хочет помочь?

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';

let overusedWords = ['really', 'very', 'basically'];

let unnecessaryWords = ['extremely', 'literally', 'actually' ];

const storyWords = story.split(' ');

console.info(storyWords.lenght);


const betterWords = storyWords.filter(word=>{
  if (word === unnecessaryWords){
    return false;
  }
  else {
    return true;
  }
});

console.info(betterWords);

Первый console.info должен возвращать длину, но он возвращает значение undefined. Во втором console.info ничего не фильтровалось. Что я делаю неправильно? Спасибо.

Его .length!

Jonas Wilms 27.11.2018 13:20

Имейте в виду, что .split(' ') заставит ваш подход пропускать слова, за которыми следует что-то вроде ,, ., : и т. д. Пример: Last weekend, literally, I took ...

connexo 27.11.2018 14:15
Поведение ключевого слова "this" в стрелочной функции в сравнении с нормальной функцией
Поведение ключевого слова "this" в стрелочной функции в сравнении с нормальной функцией
В JavaScript одним из самых запутанных понятий является поведение ключевого слова "this" в стрелочной и обычной функциях.
Концепция локализации и ее применение в приложениях React ⚡️
Концепция локализации и ее применение в приложениях React ⚡️
Локализация - это процесс адаптации приложения к различным языкам и культурным требованиям. Это позволяет пользователям получить опыт, соответствующий...
Улучшение производительности загрузки с помощью Google Tag Manager и атрибута Defer
Улучшение производительности загрузки с помощью Google Tag Manager и атрибута Defer
В настоящее время производительность загрузки веб-сайта имеет решающее значение не только для удобства пользователей, но и для ранжирования в...
Безумие обратных вызовов в javascript [JS]
Безумие обратных вызовов в javascript [JS]
Здравствуйте! Юный падаван 🚀. Присоединяйся ко мне, чтобы разобраться в одной из самых запутанных концепций, когда вы начинаете изучать мир...
Система управления парковками с использованием HTML, CSS и JavaScript
Система управления парковками с использованием HTML, CSS и JavaScript
Веб-сайт по управлению парковками был создан с использованием HTML, CSS и JavaScript. Это простой сайт, ничего вычурного. Основная цель -...
JavaScript Вопросы с множественным выбором и ответы
JavaScript Вопросы с множественным выбором и ответы
Если вы ищете платформу, которая предоставляет вам бесплатный тест JavaScript MCQ (Multiple Choice Questions With Answers) для оценки ваших знаний,...
1
2
77
3
Перейти к ответу Данный вопрос помечен как решенный

Ответы 3

Ответ принят как подходящий

Вы можете сделать что-то вроде ниже:

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';

let overusedWords = ['really', 'very', 'basically'];

let unnecessaryWords = ['extremely', 'literally', 'actually' ];

const storyWords = story.split(' ');

console.info(storyWords.length); // length spelling mistake


const betterWords = storyWords.filter(word=>{
  if (unnecessaryWords.includes(word)){ // check words in the array like that
    return false;
  }
  else {
    return true;
  }
});

console.info(betterWords);
return !unnecessaryWords.includes(word)
mplungjan 27.11.2018 13:23

я понимаю ваш pov .... но я показал, какие ошибки в коде ...

Ankush Sharma 27.11.2018 13:28

@mplungjan .filter(word=>!unnecessaryWords.includes(word))

connexo 27.11.2018 13:36

@connexo даже лучше :)

mplungjan 27.11.2018 13:45

Причина отсутствия первого console.info в том, что в свойстве length допущена опечатка. Вы используете недопустимый lenght.

Причина отсутствия второго console.info заключается в том, что существует массив unnecessaryWords, поэтому вам нужно использовать indexOf() (или includes()), чтобы проверить, существуют ли слова в этом массиве или нет:

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';

let overusedWords = ['really', 'very', 'basically'];

let unnecessaryWords = ['extremely', 'literally', 'actually'];

const storyWords = story.split(' ');

console.info(storyWords.length);


const betterWords = storyWords.filter(word => {
  return unnecessaryWords.indexOf(word) === -1;
});

console.info(betterWords);

Пожалуйста, попробуйте это ниже:

Это storyWords.length, а не lenght;

let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey.  The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side.  An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson.  Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';


var storyWords = story.split(' ');

console.info(storyWords.length) // not lenght;


function betterWords(storyWords) {
  foreach(var word in storyWords) {
    if (word === unnecessaryWords) {
      return false;
    } else {
      return true;
    }
  }
}

console.info(betterWords(story));

это неверный JS foreach(var word in storyWords) {

mplungjan 27.11.2018 13:32

Вам не хватает ненужных слов, и вы не можете сравнить строку с массивом. Пожалуйста, смотрите другие ответы на этой странице

mplungjan 27.11.2018 13:33

Другие вопросы по теме