diff --git a/the-string-dot-length-property.js b/the-string-dot-length-property.js index bfd2591..0d75a88 100644 --- a/the-string-dot-length-property.js +++ b/the-string-dot-length-property.js @@ -25,6 +25,9 @@ let lengthTwo; // Length of stringTwo let lengthThree; // Length of stringThree // Your code here - +// Using .length property +let lengthOne = stringOne.length; // Length of "Coding Bootcamp" +let lengthTwo = stringTwo.length; // Length of "JavaScript" +let lengthThree = stringThree.length; // Length of the empty string