35

I have a js object like:

obj = {
  name: 'js',
  age: 20
};

now i want to access name field of obj, but i can only get string 'name', so how to convert 'name' to obj's field name, then to get result like obj.name.

Thank you in advance.

ywenbo
  • 3,051
  • 6
  • 31
  • 46

5 Answers5

66

You can access the properties of javascript object using the index i.e.

var obj = {
  name: 'js',
  age: 20
};

var isSame = (obj["name"] == obj.name)
alert(isSame);

var nameIndex = "name"; // Now you can use nameIndex as an indexor of obj to get the value of property name.
isSame = (obj[nameIndex] == obj.name)

Check example@ : http://www.jsfiddle.net/W8EAr/

Chandu
  • 81,493
  • 19
  • 133
  • 134
20

In Javascript, obj.name is equivalent to obj['name'], which adds the necessary indirection.

In your example:

var fieldName = 'name'
var obj = {
  name: 'js',
  age: 20
};
var value = obj[fieldName]; // 'js'
Mathieu Ravaux
  • 343
  • 1
  • 5
13

Not related at all, but for anyone trying to define object's field name from a string variable, you could try with:

const field = 'asdf'
const obj = {[field]: 123}
document.body.innerHTML = obj.asdf
Alter Lagos
  • 12,090
  • 1
  • 70
  • 92
8

It's quite simple, to access an object's value via a variable, you use square brackets:

var property = 'name';
var obj = {name: 'js'};
alert(obj[property]); // pops 'js'
Seldaek
  • 40,986
  • 9
  • 97
  • 77
2

As objects are associative arrays in javascript you can access the 'name' field as obj['name'] or obj[fieldName] where fieldName = 'name'.

Vitalii Fedorenko
  • 110,878
  • 29
  • 149
  • 111