Skip to content

Commit 1c63023

Browse files
authored
Merge pull request #2721 from xirly/master
Update article.md
2 parents 5c1ee32 + df39e1a commit 1c63023

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/01-primitives-methods

1 file changed

+1
-1
lines changed

1-js/05-data-types/01-primitives-methods/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The solution looks a little bit awkward, but here it is:
4848
2. The language allows access to methods and properties of strings, numbers, booleans and symbols.
4949
3. In order for that to work, a special "object wrapper" that provides the extra functionality is created, and then is destroyed.
5050

51-
The "object wrappers" are different for each primitive type and are called: `String`, `Number`, `Boolean` and `Symbol`. Thus, they provide different sets of methods.
51+
The "object wrappers" are different for each primitive type and are called: `String`, `Number`, `Boolean`, `Symbol` and `BigInt`. Thus, they provide different sets of methods.
5252

5353
For instance, there exists a string method [str.toUpperCase()](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase) that returns a capitalized `str`.
5454

0 commit comments

Comments
 (0)