Skip to content

Instantly share code, notes, and snippets.

View denisenadal's full-sized avatar

Denise Nadal denisenadal

View GitHub Profile
Date Total confirmed positive Hospitalized Deaths
3/14/2020 3
3/15/2020 7
3/16/2020 --
3/17/2020 13
3/18/2020 27
3/19/2020 --
3/20/2020 36
3/21/2020 56
3/22/2020 64
@denisenadal
denisenadal / listcleaner.js
Created February 17, 2020 20:10
quickly get uniques from a list
var ins = [];
var uns = [];
ins.forEach(function(item){
if(uns.indexOf(item) === -1){
uns.push(item)
}
return;
});