Quiz: String Algorithms
Practice and reinforce key string concepts through quiz questions.
We'll cover the following...
We'll cover the following...
String Algorithms
1.
What is the output of the following code?
const s = "bless";
console.log(s[s.length - 2]);
A.
b
B.
l
C.
e
D.
s
1 / 10
...