Strings Flashcards

1
Q

Convert string to uppercase

A

str.toUpperCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Convert string to lowercase

A

str.toLowerCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Check if string contains substring

A

str.includes(substring)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Find length of string

A

str.length

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Replace substring with new string

A

str.replace(“old”, “new”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Split string into array

A

str.split(separator)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Extract substring

A

str.slice(start, end)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Loop through string

A

for (let char of str) {
console.log(char)
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Console log with template literals

A

console.log(‘My name is ${name}’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly