March 2021
Beginner
404 pages
5h 47m
English
In this chapter, we’ll be looking at how letters and words are represented and used in programming languages. We’ll also look at how JavaScript represents them using strings. We’re going to cover the following:
As we saw in the previous chapter, most programming languages have primitive data types of char (a single character) and strings (a collection of characters). In fact, you can almost think of a string as a collection of characters joined together by a piece of string:
JavaScript only has a primitive data type of String, but this can ...
Read now
Unlock full access