Skip to content

Commit

Permalink
feat: добавляет новые функции
Browse files Browse the repository at this point in the history
  • Loading branch information
NargizaSalomova committed Dec 10, 2024
1 parent 4ee9878 commit 5c6dd1e
Show file tree
Hide file tree
Showing 2 changed files with 61 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>
51 changes: 51 additions & 0 deletions js/functions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
const checkLength = (string, length) => {
if(string.length <= length){
return true;
} else {
return false;
}
};

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


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

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

if(newString === invertedString){
return true;
} else {
return false;
}
};

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

const getNumber = (string) => {

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

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

if(replacedString[i] < 0){
numberString += Math.abs(replacedString[i]);
}

numberString += replacedString[i];
}
}
if(numberString === ''){
return NaN;
}
const number = Number(numberString);
return number;
};

getNumber('ECMAScript 2022');

0 comments on commit 5c6dd1e

Please sign in to comment.