Skip to content

Instantly share code, notes, and snippets.

@thams017
Created January 20, 2016 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thams017/eca10db0807d37f5c047 to your computer and use it in GitHub Desktop.
Save thams017/eca10db0807d37f5c047 to your computer and use it in GitHub Desktop.
Calculate-Calculator
function calculate ()
{
var res = document.getElementById( "text" );
var expression = res.value;
res.value = eval(expression);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment