Trying to solve this:
function (key, value2) {
var obj = {}
obj.key = 'value2'
}
and not being able to access the value of first parameter using obj.key
theres any way to access it?
Trying to solve this:
function (key, value2) {
var obj = {}
obj.key = 'value2'
}
and not being able to access the value of first parameter using obj.key
theres any way to access it?