diff --git a/index.html b/index.html index 9fb6740..2eed49a 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,6 @@ + @@ -162,7 +163,7 @@

Просмотр фотогра
  • - +
  • @@ -227,12 +228,13 @@

    Изображение успешно загруже - - - + + + - + + \ No newline at end of file diff --git a/js/functions.js b/js/functions.js new file mode 100644 index 0000000..d44d3ed --- /dev/null +++ b/js/functions.js @@ -0,0 +1,24 @@ +function checkStr(string, length) { + return string.length <= length; +} +checkStr('fff', 3); + +function isPalindrome(string) { + string = string.toLowerCase().replaceAll(' ', ''); + const reversedString = string.split('').reverse().join(''); + return string === reversedString; +} +isPalindrome('ooppoo ooppoo'); +function getNums(string) { + string = String(string); + let result = ''; + for (let i = 0; i < string.length; i++) { + if (!isNaN(parseInt(string[i], 10))) { + result += string[i]; + } + } + return parseInt(result, 10); +} + +getNums('ou8kj9'); +