We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a64888 commit 09327daCopy full SHA for 09327da
1 file changed
basic/string.js
@@ -45,3 +45,8 @@ function sanitize(input, list) {
45
46
let san = sanitize();
47
console.log(san);
48
+
49
+let text2 = "How are you doing today?";
50
+const myArray = text2.split(" ");
51
+let word = myArray[1];
52
+console.log(word);
0 commit comments