Grids in toy problems and neat number parse
Sep 14, 2021
So, the first thing learned today was that I need to always remember to realign the numbers when doing arrays (n-1). It cost me a lot of time today to fix.
Also
let number = ‘7’
console.log(number);
console.log(+number+5)
Putting a + sign before a string will attempt to parse it into a number