freeCodeCamp/guide/russian/miscellaneous/check-the-length-property-o.../index.md

9 lines
428 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Check the Length Property of a String Variable
localeTitle: Проверьте свойство длины переменной String
---
Структуры данных имеют свойства. Например, строки имеют свойство с именем `.length` , которое сообщит вам, сколько символов в строке.
```
lastNameLength = lastName.length;
```