We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4712e14 commit 27036c2Copy full SHA for 27036c2
arrays/studio/string-modification.js
@@ -9,7 +9,7 @@ modifiedStr = lastStr.concat(firstStr);
9
10
11
//Use a template literal to print the original and modified string in a descriptive phrase.
12
-console.log(`We removed the first three letters "${firstStr}" from ${str} and added them to 3${lastStr} with the result of ${modifiedStr}.`);
+console.log(`We removed the first three letters "${firstStr}" from ${str} and added them to "${lastStr}" with the result of ${modifiedStr}.`);
13
14
//2) Modify your code to accept user input. Query the user to enter the number of letters that will be relocated.
15
let userInput = input.question("Input the number of letters to be relocated: ");
0 commit comments