Calculator

Home Games Links
Home Games Links
This is a calculator available for all platforms (Windows, Mac, Linix) and on the Web.

User functions

The stand alone calculator allows to work with user-defined Java Script functions

Each function is saved in separate file. All functions have the same name calculator and use the variable x as attribute.

function calculate(x)
{
.....
.....
return x;
}

Simple: Celsius to Fahrenheit

function calculate(x)
{
return 9/5 * x + 32;
}
//
Google