-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from 1Alex4949031/module2-task1
- Loading branch information
Showing
3 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,9 @@ globals: | |
noUiSlider: readonly | ||
Pristine: readonly | ||
|
||
rules: | ||
no-unused-vars: | ||
- warn | ||
|
||
extends: | ||
"htmlacademy/vanilla" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* Функция, которая проверяет, соответствует ли длина строки указанному максимуму. | ||
* | ||
* @param {string} str - Строка для проверки. | ||
* @param {number} maxLen - Максимальная допустимая длина строки. | ||
* @return {boolean} Возвращает true, если длина строки меньше или равна maxLen, иначе false. | ||
*/ | ||
function checkStringLength(str, maxLen) { | ||
return str.length <= maxLen; | ||
} | ||
|
||
/** | ||
* Функция, которая проверяет, является ли строка палиндромом. | ||
* Игнорирует пробелы и регистр символов. | ||
* | ||
* @param {string} str - Строка для проверки. | ||
* @return {boolean} Возвращает true, если строка является палиндромом, иначе false. | ||
*/ | ||
function isPalindrome(str) { | ||
const normalizedString = str.replace(/\s+/g, '').toLowerCase(); | ||
return normalizedString === normalizedString.split('').reverse().join(''); | ||
} | ||
|
||
/** | ||
* Функция, которая извлекает цифры из строки и возвращает их в виде целого числа. | ||
* Если входные данные являются числом, обрабатываются как строка. | ||
* Если цифры отсутствуют, возвращает NaN. | ||
* | ||
* @param {string|number} input - Входные данные для обработки. | ||
* @return {number} Целое число, если цифры найдены, иначе NaN. | ||
*/ | ||
function extractNumbers(input) { | ||
if (typeof input === 'number') { | ||
input = Math.abs(input).toString(); | ||
} | ||
const digits = input.match(/\d+/g)?.join('') || ''; | ||
return digits ? parseInt(digits, 10) : NaN; | ||
} |