From 3ec7259be6138e323f06d4c001d1408f1adf28b6 Mon Sep 17 00:00:00 2001 From: redup nomade Date: Tue, 6 Dec 2016 10:59:22 +0100 Subject: [PATCH] init script to download exctract csv --- scriptDownload.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scriptDownload.js diff --git a/scriptDownload.js b/scriptDownload.js new file mode 100644 index 0000000..b83cd3f --- /dev/null +++ b/scriptDownload.js @@ -0,0 +1,23 @@ + +var A = [['n','sqrt(n)']]; + +for(var j=1; j<5; ++j){ + A.push([j, Math.sqrt(j)]); +} + +var csvRows = []; + +for(var i=0, l=A.length; i