I have the opposite opinion. I've never experienced the system first-hand myself, but I know of a few who have. To me, it seems that as long as you have a business idea and actually check if it's possible to maintain,…
When creating a 2d grid array with all values the same, slicing one row multiple times works way faster than creating each row for each column. for(var y=h;y>=0; y--) row.push(0); for(var x=w; x>=0; x--) grid[x]…
I have the opposite opinion. I've never experienced the system first-hand myself, but I know of a few who have. To me, it seems that as long as you have a business idea and actually check if it's possible to maintain,…
When creating a 2d grid array with all values the same, slicing one row multiple times works way faster than creating each row for each column. for(var y=h;y>=0; y--) row.push(0); for(var x=w; x>=0; x--) grid[x]…