I have the following object:
var Customers = {
name = 'John',
last = 'Doe'
}
I have imported to my react component, I'm having difficulty looping through object content.
Here is what I have tried
import Customers from './customer';
var customer = Customers.map(function(s){ return s.name });
I'm getting the following error
Uncaught ReferenceError: name is not defined(…)(anonymous