javascript to string big number
BigInt(value).toString()
Here is what the above code is Doing:
1. We’re using the BigInt class to convert the value to a BigInt object.
2. We’re using the toString() method to convert the BigInt object to a string.
3. We’re returning the string.