函数 函数是用对象来实现的。 函数也C++中的函数类似。 定义方式 1 2 3 4 5 6 7 8 9 10 11function add(a, b) { return a + b; } let add = function (a, b) { return a + b; } let add = (a, b) => { return a + b; } 返回值 如果未定义返回值,则返回undefined。