From 48385124a203c4a0c505dff7b4d7cf65ac373904 Mon Sep 17 00:00:00 2001 From: DeepaLaunchCode Date: Thu, 13 Mar 2025 22:37:09 -0500 Subject: [PATCH] Initial commit - added lenght module --- the-string-dot-length-property.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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