Skip to content

Instantly share code, notes, and snippets.

@fredrick
Created July 25, 2011 14:48
Show Gist options
  • Select an option

  • Save fredrick/1104295 to your computer and use it in GitHub Desktop.

Select an option

Save fredrick/1104295 to your computer and use it in GitHub Desktop.
var data = [[1294816638788, 560], [1294816703445, 850]];
var dates = data.map(function(data){
return data[0];
});
var values = data.map(function(data){
return data[1];
});
console.log(dates);
console.log(values);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment