When i try to log this number 11321144241322243122 into the console it always gets converted to this number 11321144241322244000. This happens in node.js and in the browser console.
11321144241322243122 is bigger than Number.MAX_SAFE_INTEGER.
Instead, convert it to a BigInt:
console.log(BigInt("11321144241322243122").toString())
console.log(11321144241322243122)