Is it possible to access object properties using a string with another object in JavaScript?
var obj = {
title : 'spider'
}
var hero = {
spider : 'is a hero'
}
console.log( hero.spider );//works fine
console.log( hero.obj.title );//i need the same result, from variable (obj)
Any suggestions on how to achieve this?