Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Нужно больше функций #3

Merged

Conversation

skyfxllen
Copy link
Contributor

@skyfxllen skyfxllen commented Nov 20, 2024

@keksobot keksobot changed the title module2Task1 Нужно больше функций Nov 20, 2024
@keksobot
Copy link
Contributor

♻️ Я собрал ваш пулреквест. Посмотреть можно здесь.

keksobot pushed a commit that referenced this pull request Nov 20, 2024
js/function.js Outdated

function isPalindrome(word) {
if (!word.length) {
return;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Хорошая проверка, но давай функция будет возвращать только boolean. Это и из логики, и из названия следует. Сейчас ты undefined вернешь

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Исправил

js/function.js Outdated
}
word = word.toLowerCase();
word = word.replaceAll(' ', '');
let lastLetter = word.length - 1;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Хорошее решение за неполный проход слова 👍
Один вопрос: зачем эта переменная? Кажется, можно обойтись без нее и сразу индекс отнимать. Но если хочешь оставить, то лучше переименовать. Сейчас кажется, что ты хранишь тут букву, а не длину. Я сходу не понял, как ты букву используешь вместо индекса, пришлось вчитываться)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Переменную убрал, правда была лишней

js/function.js Outdated
isPalindrome('Кекс'); // false
isPalindrome('Лёша на полке клопа нашёл ');

function takeNum(string) {
Copy link

@Danila100 Danila100 Nov 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Имя функции не совсем отражает суть) Тут лучше что-то от слова "извлекать" или "получить"

В аргументах string выглядит логичным, но потом может быть не удобно в TypeScript из-за типов, получится что-то вида (string: string)=>. Поэтому можно сразу задумываться об этом, чтобы не привыкать) Функция палиндрома хороший пример с аргументом word

Это усложнение будешь делать?)

имяФункции(2023); // 2023
имяФункции(-1);   // 1
имяФункции(1.5);  // 15

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Имя поправил)
Даже не подумал о ts, сейчас исправил на word и дописал функцию

@Danila100
Copy link

Можно настроить линтер под себя в файле .eslintrc.
В доке можно искать по ошибкам и убирать error или переделвывать в warn. Сейчас действительно много неудобных моментов

@keksobot keksobot merged commit 1ad4b2d into htmlacademy-univer-javascript-1:master Nov 21, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants