Working With the String Type

In this lesson, we get introduced to the string type in JavaScript. Let's begin!

We'll cover the following...

When you intend to work with text or characters, you should use the String type. This data type represents a sequence of 16-bit Unicode characters, including the empty string with zero length.

JavaScript allows ...