JS STRINGS Flashcards

1
Q

Concatenation

A

(Adding strings together using the “+” plus sign)

Ex: console.log(“Commonwealth” + “Coders”);

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

Length Property

A

.length

Returns the length/number of characters and spaces in the string

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

Index

A
// Each character or space in a string has a set index
// Index starts at ZERO!!!
Ex: console.log("Hello"[1])
How well did you know this?
1
Not at all
2
3
4
5
Perfectly