function sum(x, y){ return x + y;}用法示例:alert(sum(1, 2));alert(sum(1234, 5678));alert(sum(2.15, -8.47));
function addNum(a, b){ return a + b;}