2018-10-10 18:03:03 -04:00
---
id: bd7123c9c448eddfaeb5bdef
title: Find the Length of a String
challengeType: 1
2019-08-28 16:26:13 +03:00
videoUrl: https://scrimba.com/c/cvmqEAd
forumTopicId: 18182
2018-10-10 18:03:03 -04:00
localeTitle: Найти длину строки
---
## Description
2019-08-28 16:26:13 +03:00
< section id = 'description' >
Вы можете найти длину значения < code > String< / code > , написав < code > .length< / code > после строковой переменной или строкового литерала. < code > " Alan Peter" .length; // 10< / code > Например, если мы создали переменную < code > var firstName = " Charles" < / code > , мы могли бы узнать, как долго строка < code > " Charles" < / code > используется с использованием свойства < code > firstName.length< / code > .
< / section >
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
< section id = 'instructions' >
Используйте свойство < code > .length< / code > чтобы подсчитать количество символов в переменной < code > lastName< / code > и назначить е г о < code > lastNameLength< / code > .
< / section >
2018-10-10 18:03:03 -04:00
## Tests
< section id = 'tests' >
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: You should not change the variable declarations in the < code > // Setup</ code > section.
testString: assert(code.match(/var lastNameLength = 0;/) & & code.match(/var lastName = "Lovelace";/));
- text: < code > lastNameLength</ code > should be equal to eight.
testString: assert(typeof lastNameLength !== 'undefined' & & lastNameLength === 8);
- text: 'You should be getting the length of < code > lastName</ code > by using < code > .length</ code > like this: < code > lastName.length</ code > .'
testString: assert(code.match(/=\s*lastName\.length/g) && !code.match(/lastName\s*=\s*8/));
2018-10-10 18:03:03 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
// Example
var firstNameLength = 0;
var firstName = "Ada";
firstNameLength = firstName.length;
// Setup
var lastNameLength = 0;
var lastName = "Lovelace";
// Only change code below this line.
lastNameLength = lastName;
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
2019-08-28 16:26:13 +03:00
var firstNameLength = 0;
var firstName = "Ada";
firstNameLength = firstName.length;
var lastNameLength = 0;
var lastName = "Lovelace";
lastNameLength = lastName.length;
2018-10-10 18:03:03 -04:00
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
< / section >