Advertisement
tr00per92

Calculator-JS

Jun 6th, 2014
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function calculate(input) {
  2.     var display = document.getElementById('display').value;
  3.     switch(input) {
  4.         case "clear": display = ""; break;
  5.         case "=": display = eval(display); break;
  6.         default: display += input; break;
  7.     }
  8.     document.getElementById('display').value = display;
  9. }
  10. function searchKeyPress(event) {
  11.     if (event.keyCode == 13) {
  12.         event.preventDefault();
  13.         calculate('=');
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement