hello,
I have a var that I need to turn into an object or remove from a string
var value = "user";
I need to remove user from the " " so I can use in another var
var w = rec.value;
the current problem is right now I am getting a result of w = undefined because the value is reading rec."value" instead of rec.value
any help is appreciated.
thanks!