I have been making input fields of type number
on the client side. I've been giving them a max
attribute of the maximum integer value in the client's browser, using:
Number.MAX_SAFE_INTEGER.toString()
Now, I'm outputting an input field on the server-side. I still want the maximum value of the field to be the client's maximum integer.