You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/05-data-types/01-primitives-methods/article.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The solution looks a little bit awkward, but here it is:
48
48
2. The language allows access to methods and properties of strings, numbers, booleans and symbols.
49
49
3. In order for that to work, a special "object wrapper" that provides the extra functionality is created, and then is destroyed.
50
50
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.
52
52
53
53
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`.
0 commit comments