Comment créer une fonction à partir d'une chaîne

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