SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to perform operation with numbers as strings (as in the case where numbers are bigger than 64bits can hold) you can use the big-integer library.
const bigInt = require('big-integer') bigInt("999").add("1").toString() // output: "1000"