Skip to content

Commit ac185dd

Browse files
authored
Merge pull request #807 from StepanNaryshkov/snaryshkov/added-null-as-type
added null as primitive type
2 parents fc48632 + 5da62e0 commit ac185dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-js-basics/1-data-types/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Constants are similar to variables, with two exceptions:
107107
108108
Variables can store many different types of values, like numbers and text. These various types of values are known as the **data type**. Data types are an important part of software development because it helps developers make decisions on how the code should be written and how the software should run. Furthermore, some data types have unique features that help transform or extract additional information in a value.
109109
110-
✅ Data Types are also referred to as JavaScript data primitives, as they are the lowest-level data types that are provided by the language. There are 6 primitive data types: string, number, bigint, boolean, undefined, and symbol. Take a minute to visualize what each of these primitives might represent. What is a `zebra`? How about `0`? `true`?
110+
✅ Data Types are also referred to as JavaScript data primitives, as they are the lowest-level data types that are provided by the language. There are 7 primitive data types: string, number, bigint, boolean, undefined, null and symbol. Take a minute to visualize what each of these primitives might represent. What is a `zebra`? How about `0`? `true`?
111111
112112
### Numbers
113113

0 commit comments

Comments
 (0)