tofixed is not a function in javascript - Google Search

PHOTO EMBED

Thu Jan 13 2022 21:34:14 GMT+0000 (Coordinated Universal Time)

Saved by @Samo_Krose #javascript

toFixed isn't a method of non-numeric variable types. In other words, Low and High can't be fixed because when you get the value of something in Javascript, it automatically is set to a string type. Using parseFloat() (or parseInt() with a radix, if it's an integer) will allow you to convert different variable types to numbers which will enable the toFixed() function to work.

var Low  = parseFloat($SliderValFrom.val()),
    High = parseFloat($SliderValTo.val());
content_copyCOPY

https://www.google.com/search?q