函数是用对象来实现的。
函数也C++中的函数类似。

定义方式

  1. function add(a, b) {
  2. return a + b;
  3. }
  4. let add = function (a, b) {
  5. return a + b;
  6. }
  7. let add = (a, b) => {
  8. return a + b;
  9. }

返回值

  • 如果未定义返回值,则返回undefined。