s
-.js
j
What's the reason for calling record.delete using an index expression?
Just curious
s
Eclipse complains about the
record.delete
syntax. That's the only reason.
m
Many IDEs will complain about a call to the “delete” keyword as a method. It’s one of those reserved words.
s
Though, since I've switched to WebStorm and VS Code, it may not matter anymore.
s
THAT is the problem I was running into but I didn't know why
j
Aha makes sense
s
It's just a warning from the IDE. It is also perfectly fine to use
record.delete
if you don't see or don't mind the warning.
s
the mass update script appears to be working
Thanks
👍 1