Files
freeCodeCamp/guide/english/miscellaneous/check-the-length-property-of-a-string-variable/index.md

6 lines
245 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Check the Length Property of a String Variable
---
Data structures have properties. For example, strings have a property called `.length` that will tell you how many characters are in the string.
lastNameLength = lastName.length;