diff --git a/the-string-dot-length-property.js b/the-string-dot-length-property.js index bfd2591..9e4c514 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 +lengthOne=stringOne.length; +lengthTwo=stringTwo.length; +lengthThree=stringThree.length; - - +console.log("length of "+stringOne+": "+lengthOne); +console.log("length of "+stringTwo+": "+lengthTwo); +console.log("length of "+stringThree+": "+lengthThree); \ No newline at end of file