duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
duplicates = multiple editions
'use strict'; | |
// bower install js-xlsx | |
// in controller | |
$scope.saveAsXlsx = function() { | |
let data = [['a', 'b', 'c', 'd', 'e'], [1, 2, 3, 4, 5]]; | |
// create an excel worksheet from an array of arrays (aoa) of survey data | |
let worksheet1 = XLSX.utils.aoa_to_sheet(data); | |
// instantiate new excel workbook | |
let workbook = XLSX.utils.book_new(); |