What type of container object?
var pname = "apples"; var extVal = "oranges"; var container = {}; container = { presName: pname, presVal: pname };
I want to compare the value of presVal (from inside container ) with the value of extVal .
But I'm not sure how to access presVal to make this comparison.
source share