Skip to content

Commit

Permalink
Удаляет тесты из functions.js
Browse files Browse the repository at this point in the history
  • Loading branch information
furidasha committed Nov 23, 2024
1 parent 3b68bde commit f30b949
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions js/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,3 @@ const extractNumber = (string) => {
}
return parseInt(number);

Check failure on line 27 in js/functions.js

View workflow job for this annotation

GitHub Actions / Check

Missing radix parameter
}

Check failure on line 28 in js/functions.js

View workflow job for this annotation

GitHub Actions / Check

Missing semicolon

console.log('\n--- Тесты для extractNumber---');
console.log(
`Аргумент начинается с числа: ${extractNumber('2023 год') === 2023}`
);
console.log(
`Аргумент заканчивается на число: ${
extractNumber('ECMAScript 2022') === 2022
}`
);
console.log(
`Аргумент содержит несколько чисел, в том числе и с плавющей точкой: ${
extractNumber('1 кефир, 0.5 батона') === 105
}`
);
console.log(
`Аргумент закначивается на число с нолями: ${
extractNumber('агент 007') === 7
}`
);
console.log(`Аргумент строка без чисел: ${isNaN(extractNumber('а я томат'))}`);
console.log(`Аргумент число: ${extractNumber(2023) === 2023}`);
console.log(`Аргумент отрицательное число: ${extractNumber(-1) === 1}`);
console.log(`Аргумент число с плавющей точкой: ${extractNumber(1.5) === 15}`);

0 comments on commit f30b949

Please sign in to comment.