I have value an array like this:
multi_arr = ["resi_spec","resi_desc"];
So each array value is considered as a variable and I want to store some value of these variables dynamically like this:
resi_spec = "good morning"
resi_desc = "good evening";
So that the array values are converted as variables. Is this possible?
I don't want use use obj[resi_spec] like this and i used array not variable if i just enter resi_spec means , i'll get good morning.