JSInt app for iPhone and iPad
4.1 (
8641 ratings )
Utilities
Education
Developer: AAB Science
Free
Current version: 1.0.1, last update: 8 years agoFirst release : 29 May 2011
App size: 3.47 Mb
JSInt is an interactive JavaScript console. It may be useful to perform mathematical calculations or for learning JavaScript.
For example, you can try entering following statements ( user input is prefixed with > here ):
> x = 10
10
> x = x / 5
2
> Math.sin(Math.PI / x)
1
> f = function(x) { return x^2 + 3*x + 5}
f = function(x) { return x^2 + 3*x + 5}
> f(x)
15
JSInt uses JavaScriptCore Open Source library which implements JavaScript 1.5 / ECMA-262 3rd edition.