摘要: 一、函数创建 1. 函数声明 (出现在全局作用域,或局部作用域) function add (a, b) { return a + b; } function add(a, b) { return add1(a,b); function add1(m, n) { return m + n; } } 阅读全文
posted @ 2016-10-22 01:13 箫笛 阅读(295) 评论(0) 推荐(0) 编辑