Build A Calculator in React This project is part of the freeCodeCamp react certification program. In this React Project tutorial, we will learn how to build a simple calculator using JavaScript React framework. TASKS TO ACHIEVE IN THE PROJECT The calculator should contain clickable element with an 'Equal to' sign (that is, an = symbol ) which has an id of "equals". There should be ten clickable elements having one number each from 0-9 with the following corresponding IDs : id="zero", id="one", id= "two", id="three", id="four", id="five", id="six", id="seven, id="eight" and id="nine" There will be four clickable elements each having one of the primary mathematical operators with the following corresponding IDs: id="add', id="subtract", id="multiply", id="divide". T here will be one clickable element with a decimal point symbol w...
Comments
Post a Comment