#How to format Field values that are output
7 messages · Page 1 of 1 (latest)
Hello convert it toBigint first maybe
and convert your bigint to number
const myBigInt = BigInt(10); // 10n also works
const myNumber = Number(myBigInt);
care if you are out of range for a number