String BasicsWorking with text strings. String Basics A JavaScript string is zero or more characters written inside quotes. let text = "John Doe"; You can use single or double quotes. You can use quotes inside a string, as long as they don't match the quotes surrounding the string. Examplelet answer = "It's alright";Try it Yourself PreviousNext