From 66007ba2ecb7a34fbf36894a8b2c5c02cfaee1e7 Mon Sep 17 00:00:00 2001 From: Theo Date: Thu, 20 Jan 2022 12:35:38 +0100 Subject: [PATCH] Update Q1: add BigInt as primitive type Source: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-2.html#bigint --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 396c464..f96360c 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ var variable_name:number = null; ```js var variable_name:number = undefined; ``` +* **BigInt** type: it is the type that allows to model theoretically arbitrarily large integers. It is the same as JavaScript primitive bigint number. +```js +var variable_name:bigint; +``` 🔗 **Source:** [FullStack.Cafe](https://www.fullstack.cafe)