- Still practicing JavaScript by making a calculator.
- styled the number pad by row from 0-9
- some exceptions required using the column ID's to style columns
- only used one event listener, set conditions to get the exact key id for easy access to button
- used
screen.textContent = screen.textContent + num;
to add previous text to current text - pushed new digits into array, then used
.join('')
to save array incalcTwoNums.secondNum
as a string
- add backspace button (make CE button functional)
- add decimal button (make decimal button functional)