├── README.md └── letThereBe.js /README.md: -------------------------------------------------------------------------------- 1 | light 2 | ===== 3 | 4 | it was kind of dark in here. 5 | -------------------------------------------------------------------------------- /letThereBe.js: -------------------------------------------------------------------------------- 1 | function inTheBeginning() { 2 | 3 | var heaven = {}, 4 | earth; 5 | 6 | let deep = 'darkness'; 7 | 8 | if (!earth) { 9 | 10 | let light = 'light'; // and there was light 11 | 12 | if (light) { 13 | return deep + ' / ' + light; 14 | } else { 15 | earth = deep; 16 | } 17 | } 18 | 19 | var evening = day = 4320000; 20 | 21 | setTimeout(function() { 22 | return heaven + earth; 23 | }, evening + day); 24 | } 25 | 26 | --------------------------------------------------------------------------------