How can I remove the quotation marks from the values in the print screen

screenshot
Hello everyone, I have a question, how can I remove the quotation marks from the values ​​in the print screen
Thanks for your answers

The quotation marks indicate that the values are Strings (text representations) no the numerical values. If you want the numerical value, then you will need to parse them.

You can use a function node to parse the values as follows:

msg.current = Number(msg.current)
return msg;

But you will have to repeate the first line for any specific values you want.

1 Like

Thank you have a nice day!

Hello, I happen to have this problem too. Thank you for your answer, which let me solve the problem.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.