79141479

Date: 2024-10-30 14:23:24
Score: 0.5
Natty:
Report link

You should be able to use parseFloat directly, skipping toString conversion:

const d = parseFloat(row.f0_);

Also, if you find f0_ ugly, you can rename it using AS

SELECT AVG(vs) AS 'vs'

Then this would become

const d = parseFloat(row.vs);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul Jurczyk