What are the new features in ES2020 and React 17
1) BigInt: BigInt allows us to store bigger integer values in our javascript code. At present the maximum safe integer in javascript is “pow(2, 53) – 1”. It is called Number.MAX_SAFE_INTEGER because it’s the maximum number that javascript allows to store as an ...