-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added task Допишите функцию валидации имени пользователя
- Loading branch information
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Допишите функцию валидации имени пользователя | ||
|
||
Необходимо, чтобы на сайте можно было поприветствовать только пользователей, | ||
которые удовлетворяют следующему условию - *имя не пустое, без пробелов, минимум 4 символа*. | ||
|
||
```js | ||
/** | ||
* Эту функцию трогать не нужно | ||
*/ | ||
function print(text) { | ||
console.log(text); | ||
} | ||
|
||
/** | ||
* Эту функцию нужно поменять так, | ||
* чтобы функция sayHello работала корректно | ||
* @param {string | null} name | ||
* @returns {boolean} | ||
*/ | ||
function isValid(name) { | ||
// ваш код... | ||
} | ||
|
||
/** | ||
* Эту функцию трогать не нужно | ||
*/ | ||
function sayHello() { | ||
let userName = prompt('Введите ваше имя'); | ||
|
||
if (isValid(userName)) { | ||
print(`Welcome back, ${userName}!`); | ||
} else { | ||
print('Некорректное имя'); | ||
} | ||
} | ||
|
||
sayHello(); | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Эту функцию трогать не нужно | ||
*/ | ||
function print(text) { | ||
console.log(text); | ||
} | ||
|
||
/** | ||
* Эту функцию нужно поменять так, | ||
* чтобы функция sayHello работала корректно | ||
*/ | ||
function isValid(name) { | ||
// ваш код... | ||
} | ||
|
||
function sayHello() { | ||
let userName = prompt('Введите ваше имя'); | ||
|
||
if (isValid(userName)) { | ||
print(`Welcome back, ${userName}!`); | ||
} else { | ||
print('Некорректное имя'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
describe('1-module-2-task', () => { | ||
it('если имя корректное, то true', () => { | ||
expect(isValid('Ilia')).toEqual(true); | ||
}); | ||
|
||
it('если содержит пробелы, то false', () => { | ||
expect(isValid('Ilia Burlak')).toEqual(false); | ||
}); | ||
|
||
it('если меньше 4 символов то false', () => { | ||
expect(isValid('Ili')).toEqual(false); | ||
}); | ||
|
||
it('если null то false', () => { | ||
expect(isValid(null)).toEqual(false); | ||
}); | ||
}); |