I'm stuck on a problem with context
and and trying to check things.
To that end this is a bit of code I wrote
let x = context.get("test") || 0;
if (msg.payload == "x")
{
context.set("test",1)
}
else
if (msg.payload == "y")
{
context.set("test",0)
}
let msg.payload = x;
return msg;
But I'm seeing/getting errors with the msg.payload
lines.
Errr..... Why?
See included picture:
E1cid
2
Msg is already defined, so no need for the let
2 Likes
Thanks.
Shows how bad I've got with being away from coding for a while.
(That solved it.)
(No button to indicate that so sorry.)
Yeah, thanks.
That is another thing I need to instil with myself.
But I am (for now) getting rid of all the var
and making them let
.
Then I need to check if I can make them const
.
(Which I have done with some already.)
It is just a long painful thing, and I've been out of programming for a few months.

system
Closed
6
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.