the prefix isn’t a command, it’s a variable
from this…
prefix = “”;
it’s saying, if(dollarSign) …or if dollarSign = true, then prefix +=”$” add a dollar sign to the variable prefix “” that’s now prefix = “$”. I already made the code append a “m” to the end of your numbers.
see, down at the bottom there’s prefix + s. it’s basically $+ number
now if you want to code your own append suffix, you would go like…at the top
meterSign = true;
suffix = “”
if(meterSign) suffix += “m”;
outStr + decimals + suffix;
}else{
prefix + s+ suffix;
https://technicolorsoftware.hostzi.com/