diff --git a/the-string-dot-length-property.js b/the-string-dot-length-property.js index bfd2591..c5434d1 100644 --- a/the-string-dot-length-property.js +++ b/the-string-dot-length-property.js @@ -25,6 +25,10 @@ let lengthTwo; // Length of stringTwo let lengthThree; // Length of stringThree // Your code here - - +let stringOne = "Coding Bootcamp"; +let stringTwo = "JavaScript"; +let stringThree = ""; +console.log(lengthOne); +console.log(lengthTwo); +console.log(lengthThree);