If you are working with arbitrarily large numbers, you should not use these directly in noUiSlider as you'll run into some JavaScript limitations. Instead, you should map your values to an array of string values.
Numbers is JavaScript are "double precision floats", which can store numbers up to 2^53 (9007199254740992) precisely.
For reference, see this StackOverflow question, or issue #427 filed on GitHub.
As an example, see the 'range'
option for a RAM selector offering 14 steps from 512MB to 8GB. The 'step'
are omitted for clarity. The values are provided as bytes.
A better solution would be to abstract the byte values away from the slider, looking up the byte values in an array. This keeps the slider configuration simple and prevents issues with floating point precision.
(These values fit within the limit just fine, but demonstrate the point really well!)