Skip to content

Instantly share code, notes, and snippets.

@obiwankenoobi
obiwankenoobi / coronavirus.js
Last active February 24, 2020 22:24
Coronavirus model
function simpleCoronaModel() {
let numOfSickPeople = 1
let numberOfDeaths = 0
let days = 0
const infectionPerDay = 1.165
const period = 100
const healingRate = 1 / 14
const percentageOfSurvivors = 0.97
@obiwankenoobi
obiwankenoobi / deepCopyArr.js
Last active September 24, 2018 08:47
function to deep copying an array of objects
const copyArr = arr => arr.map(obj => JSON.parse(JSON.stringify(obj)));
/*
** %%%%%%%%%%%%EXAMPLE%%%%%%%%%%%%%%%
** let arr = [
** { name: "arty" },
** { name: "yotam" },
** [1,2,3]
** ];
** let coppyArr = deepCopiedArr(arr);