Update article.md

Revision to unary plus not allowed bigints description in response to PR
This commit is contained in:
Peter Roche 2020-07-16 10:20:25 -06:00 committed by GitHub
parent c3a11c85e5
commit 72482bc435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ The conversion operations are always silent, never give errors, but if the bigin
````smart header="The unary plus is not supported on bigints"
The unary plus operator `+value` is a well-known way to convert `value` to a number.
On bigints it's not supported, to avoid confusion:
In order to avoid confusion, it's not supported on bigints:
```js run
let bigint = 1n;