Skip to content

Commit

Permalink
Merge pull request #2 from NargizaSalomova/module2-task1
Browse files Browse the repository at this point in the history
Нужно больше функций
  • Loading branch information
Kartaviy-arteom authored Dec 11, 2024
2 parents 4ee9878 + b31b96f commit cf0dda5
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 7 deletions.
17 changes: 10 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<!DOCTYPE html>
<html lang="ru">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="./js/functions.js" defer></script>
<title>Кекстаграм</title>
</head>

Expand Down Expand Up @@ -162,7 +164,7 @@ <h2 class="big-picture__title visually-hidden">Просмотр фотогра
</li>
<li class="social__comment">
<img class="social__picture" src="img/avatar-3.svg" alt="Аватар комментатора фотографии" width="35" height="35">
<p class="social__text">Да это фоташоп!!!!!!!!</p>
<p class="social__text">Да это фоташоп!!!!!!!!</p>
</li>
</ul>

Expand Down Expand Up @@ -227,12 +229,13 @@ <h2 class="success__title">Изображение успешно загруже
</section>
</template>

<!-- Сообщение с ошибкой загрузки изображений от других пользователей -->
<template id="data-error">
<section class="data-error">
<h2 class="data-error__title">Не удалось загрузить данные</h2>
</section>
</template>
<!-- Сообщение с ошибкой загрузки изображений от других пользователей -->
<template id="data-error">
<section class="data-error">
<h2 class="data-error__title">Не удалось загрузить данные</h2>
</section>
</template>

</body>

</html>
33 changes: 33 additions & 0 deletions js/functions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const checkLength = (string, length) => string.length <= length;

checkLength('проверяемая строка', 18);


const isPalindromeString = (string) => {
const newString = string.replaceAll(' ','').toLowerCase();

let invertedString = '';
for(let i = newString.length - 1; i >= 0; i--){
invertedString += newString[i];
}

return newString === invertedString;

};

isPalindromeString('Лёша на полке клопа нашёл ');

const getNumber = (string) => {
const replacedString = string.replaceAll(' ','');
let numberString = '';

for(let i = 0; i <= replacedString.length - 1; i++){
if(!isNaN(replacedString[i])){
numberString += replacedString[i];
}
}

return parseInt(numberString, 10);
};

getNumber('ECMAScript 2022');

0 comments on commit cf0dda5

Please sign in to comment.