A calculator created using JavaScript, HTML and SCSS.
Create a calculator to be rendered to the html page it should have number keys from 0 to 9 It should have operator keys (+, -, /, *, =) It should have a display rendering the current calculation in a box at the top It should also have a "." key You should choose a picture of a calculator from the Internet and reproduce it in HTML/SCSS
Should render the current calculation in a box at the top (calculator display) It should handle decimals It doesn't need to support orders of operation It should not use eval() or Function() constructor You should be writing arrow functions Try and create as many pure functions as possible!
