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: README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ Other Style Guides
71
71
-`null`
72
72
-`undefined`
73
73
-`symbol`
74
+
-`bigint`
74
75
75
76
```javascript
76
77
constfoo=1;
@@ -81,7 +82,7 @@ Other Style Guides
81
82
console.log(foo, bar); // => 1, 9
82
83
```
83
84
84
-
- Symbols cannot be faithfully polyfilled, so they should not be used when targeting browsers/environments that don’t support them natively.
85
+
- Symbols and BigInts cannot be faithfully polyfilled, so they should not be used when targeting browsers/environments that don’t support them natively.
85
86
86
87
<a name="types--complex"></a><a name="1.2"></a>
87
88
- [1.2](#types--complex) **Complex**: When you access a complex type you work on a reference to its value.
0 commit comments