导航
function 函数名(参数) {
// 执行语句
}
var test = function test1() {
console.log(test1.name); // test1 内部可见
}
console.log(test.name); // test1
test(); // 可执行
// test1(); // 报错,test1函数外部不可见
// 整体是个匿名函数表达式,function匿名函数这个值,这个整体是字面量
var test = function() {
var a = 1, b = 1; // 推荐
// var a = b = 1; // 不推荐,此时的 b 并没有被 var ,b 为全局变量
}
var a = 10; // 10 这个值就是字面量
var a = function b() {
console.log(a, b); // [Function: b] [Function: b]
console.log(a.name, b.name); // b b
}
a();
function test(a, b) { // a, b 是形参
}
test(1, 2); // 1, 2 是实参
arguments.length
是 实参个数[function name].length
是 形参个数function test(a, b, c) {
console.log(arguments.length); // 实参有 2 个:1 跟 2
console.log(test.length); // 形参有3个:a, b, c
}
test(1, 2);
(function() {}).length; // 0
function sum() {
return [...arguments].reduce((total, cur) => total += cur, 0);
}
sum(1, 2, 3);
function test(a, b) {
a = 3;
console.log(arguments[0]); // 值为3,修改形参会影响 arguments 映射的值
b = 2;
console.log(arguments[1]);
// 值为undefined,由于没有传入形参对应的实参,导致更改形参无法改变 arguments 中对应的值
}
test(1);
function test() {
console.log('1'); // 1
return 123; // test函数返回123
console.log('2'); // 未被执行,不会打印
}
function test(a, b) {
console.log(a, b); // 1, undefined
}
test(1);
function test(a = 1, b = 2) {
console.log(a, b); // 1, 2
}
test();
function test(a = 1, b) {
console.log(a, b); // 1, 2
}
test(undefined, 2);
function test(a, b) {
var a = typeof(arguments[0]) !== 'undefined' ? arguments[0] : 1;
var b = typeof(arguments[1]) !== 'undefined' ? arguments[1] : 2;
console.log(a, b);
}
test();
test(); // 1
function test() {
console.log(1);
}
console.log(a); // undefined
var a;
function test() {
var a = b = 1;
}
test();
console.log(b); // 1 (b挂在了window,因为没有var声明)
console.log(window.b); // 1
console.log(a); // ReferenceError: a is not defined
console.log(window.a); // undefined
function test(a) {
console.log(a);
var a = 1;
console.log(a);
function a() {}
console.log(a);
var b = function() {}
console.log(b);
function d() {}
}
test(2);
// function a() {}
// 1
// 1
// function() {}
AO = {
a: undefined ->
2 ->,
function a(){} ->
1,
b: undefined ->
function() {},
d: function d() {}
}
function test(a, b) {
console.log(a);
c = 0;
var c;
a = 5;
b = 6;
console.log(b);
function b() {}
function d() {}
console.log(b);
}
test(1, 2);
// 1
// 6
// 6
AO = {
a: undefined ->
1 ->
5,
b: undefined ->
2 ->
function b() {} ->
6,
c: undefined ->
0,
d: function d() {}
}
console.log(a);
a = 2;
// 答案:
// ReferenceError: a is not defined
// vs
console.log(a);
var a = 2;
// 答案:
// undefined
function test() {
console.log(a);
a = 2;
}
test();
// 答案:
// ReferenceError: a is not defined
// vs
function test() {
console.log(a);
var a = 2;
}
test();
// 答案:
// undefined
console.log(a);
if (true) {
a = 2;
}
// 答案:
// ReferenceError: a is not defined
// vs
console.log(a);
if (true) {
var a = 2;
}
// 答案:
// undefined
// ----------
var a = 1;
{
a = 3;
console.log(a);
var a;
}
console.log(a);
// 答案:
// 3 3
function test() {
console.log(a);
if (true) {
a = 2;
}
}
test();
// 答案:
// ReferenceError: a is not defined
// vs
function test() {
console.log(a);
if (true) {
var a = 2;
}
}
test();
// 答案:
// undefined
{
a = 3;
}
console.log(a);
// 答案:
// 3 (a 不会提升 但会执行,挂载在 window 下)
// vs
console.log(a);
{
a = 3;
}
// 答案:
// ReferenceError: a is not defined
// vs
{
var a = 3;
}
console.log(a);
// 答案:
// 3
// ----------------------
if (true) {
a = 3;
}
console.log(a);
// 答案:
// 3
// vs
if (false) {
a = 3;
}
console.log(a);
// 答案:
// Uncaught ReferenceError: a is not defined
// ----------------------
if (true) {
var a = 3;
}
console.log(a);
// 答案:
// 3
// vs
if (false) {
var a = 3;
}
console.log(a);
// 答案:
// undefined
GO === window
var a = 1;
**function a() {**
console.log(2);
}
console.log(a);
*//* 答案:
// 1
GO = {
a: undefiend ->
function a(){} ->
1
}
console.log(a, b);
function a() {}
var b = function() {};
// 答案:
// function a() {} undefined
GO = {
b: undefined,
a: function a() {}
}
function test() {
var a = b = 1;
console.log(a);
}
test();
// 答案:
// 1
GO = {
b: 1
}
AO = {
a: undefined ->
1
}
var b = 3;
console.log(a);
function a(a) {
console.log(a);
var a = 2;
console.log(a);
function a() {}
var b = 5;
console.log(b);
}
a(1);
// 答案:
// function a(a) {}
// function a() {}
// 2
// 5
GO = {
b: 3
a: function a() {}
}
AO = {
a: undefined ->
1 ->
function a() {} ->
2,
b: undefined ->
5
}
AO = {
b: undefined ->
5
}
a = 1;
function test() {
console.log(a);
a = 2;
console.log(a);
var a = 3;
console.log(a);
}
test();
// 答案:
//undefined
// 2
// 3
GO = {
a: undefined ->
1,
test: function test() {}
}
AO = {
a: undefined ->
2 ->
3
}
function test() {
console.log(b);
if (a) {
var b = 2;
}
c = 3;
console.log(c);
}
var a;
test();
a = 1;
console.log(a);
// 答案:
// undefined
// 3
// 1
GO = {
test: function test() {},
a: undefined ->
1,
c: 3
}
AO = {
b: undefined
}
假定 if 中有一个函数声明 function a() {}