var arr ={count:12,total:110};
console.log(arr.count,'',arr.total) //12 110
but how to use like this
var c='count';
console.log(arr.c) //it's not similar to arr.count is there is any way to use this
How to access the array object by referring to the string?