How can I add percentages so they show like this 20% instead of .20 in value, it would look cleaner, tia
CalcHub Answered question February 28, 2023
You can multiply the result by 100. Like:
y[1] = x[1] * 100 + '%';
CalcHub Answered question February 28, 2023