Функция JavaScript из строки

var addition = Function("a", "b", "return a + b;");
alert(addition(5, 3)); // shows '8'
Disgusted Dragonfly