offi-ani / calculator

Exercise your DOM skills to build functional calculator with JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calculator

Join the chat at https://gitter.im/unioncollege-webtech/calculator

Exercise your DOM skills to build functional calculator with JavaScript.

Description

Use DOM methods to create functional calculator that has buttons for the numbers 0–9 as well as for some basic operators for addition (+), subtraction (-), multiplication (* or x), division (/), and equals (=).

In addition to those buttons, the calculator should have a display which displays the numbers or operators pressed by the user. When the user presses equals (=), the calculator should evaluate the math expression and update the display with the result.

For this exercise, create a basic functional calculator purely with JavaScript using the DOM API, and style it using CSS. Use document.createElement(tagname) to create the button elements and document.body.appendChild(element) to add them to the page. Use element.addEventListener to listen to 'click' events on the buttons. When the 'click' event fires, update the display and/or evaluate the math expression based on the button that was clicked (see event.currentTarget or event.target).

Almost any element could be used for the calculator's display. An input would work well, but it could just as well be div, span, or p.

If you use the input element, use the value property to update the display. If you use any other element the textContent property should be used.

DOM methods

This exercise is intended for you to become familiar with the DOM API. Try to build the entire user interface for the calculator using only JavaScript. I will accept some static content in index.html, but the buttons and display for the calculator interface should be created using DOM methods.

Evaluating the result

To evaluate the result, use the math.js library (mathjs.org) by calling math.eval(expression). The math.js library should be loaded on the page before calculator.js.

Styling the calculator

Please add at least basic styles to improve the usability of the calculator. The styles should lay out the calculator buttons in a logical and organized manner. Consider making the calculator usable on mobile devices as well.

Additional functionality

Feel free to add additional operators or complex functionality for the calculator. Math.js supports a wide range of operators and complex expressions.

Completing and submitting the assignment

You are also welcome commit, push, and create a pull request before you’ve completed your solution. You can ask questions or request feedback there in your pull request. Just mention @barberboy in your comments to get my attention.

References

About

Exercise your DOM skills to build functional calculator with JavaScript


Languages

Language:HTML 100.0%