function foo(name) { return "Hello " + name; } foo("Klipse");
[1,2,3].map(function(x){ return x + 1;})
```eval-js var x = 1; x + Math.random(); ```