Strings Flashcards
1
Q
Convert string to uppercase
A
str.toUpperCase()
2
Q
Convert string to lowercase
A
str.toLowerCase()
3
Q
Check if string contains substring
A
str.includes(substring)
4
Q
Find length of string
A
str.length
5
Q
Replace substring with new string
A
str.replace(“old”, “new”)
6
Q
Split string into array
A
str.split(separator)
7
Q
Extract substring
A
str.slice(start, end)
8
Q
Loop through string
A
for (let char of str) {
console.log(char)
}
9
Q
Console log with template literals
A
console.log(‘My name is ${name}’)