diff --git a/index.html b/index.html index 9fb6740..e02b4b9 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ + Кекстаграм diff --git a/js/functions.js b/js/functions.js new file mode 100644 index 0000000..8de4812 --- /dev/null +++ b/js/functions.js @@ -0,0 +1,35 @@ +// Строка короче 20 символов +const stringFirst = 'Двадцать'; +if (stringFirst.length < 20) { + console.log ('true'); +} +else { + console.log ('false'); +} + +// Длина строки не более 6 символов +const stringSecond = 'Вторая'; +if (stringSecond.length <= 6) { + console.log ('true'); +} +else { + console.log ('false'); +} + +// Строка длиннее 10 символов +const stringThird = 'Третья'; +if (stringThird.length > 10) { + console.log ('true'); +} +else { + console.log ('false'); +} + +// Функция для проверки, является ли строка палиндромом. +const palindrome = str => { + str = str.toLowerCase(); + return str === str.split('').reverce().join(''); +} +const str = 'level'; +const isPalindrome = palindrome(str); +console.log (isPalindrome);