I need to store values that would look like this:
"somekey": "value1", "value2"
So I want to create a function that will take in "somekey", and it will return "value1", "value2".
It doesn't have to be a function, it could easily be a collection that I initialize in my javascript file and then reference like:
var v1 = blah("somekey").value1;
var v2 = blah("somekey").value2;
I know this is possible, I just don't know enough to get a handle on this yet!