data — keys()
Description
The keys() method of the data object returns a list of all dataset names stored in the notebook.
Signature
data.keys()- Scope
data- Family
core- Returns
keys
Returns
keys( string[] )- An array containing the names of all stored datasets.
Example
// get the list of datasets
var dataKeys = data.keys();
// log the datasets list
notebook.log(dataKeys);