/**
* Works for objects that only have basic vars.
* Does not properly work if there are functions or Date vars in the source object.
*/exportconstcloneSimpleObject = (objToClone) => JSON.parse(JSON.stringify(objToClone));
exportconstcopyArray = (arr) => arr.slice(0);