lookup
Look up a value in a table or object.
Imagine you have this data, using import:
g.import('people.csv');
Using lookup
we can extract the value of one column:
var data = g.import('people.csv');
var row = data[0];
g.lookup(row, 'name');
Look up a value in a table or object.
Imagine you have this data, using import:
g.import('people.csv');
Using lookup
we can extract the value of one column:
var data = g.import('people.csv');
var row = data[0];
g.lookup(row, 'name');