摘要:
数组常用方法总结 concat filter map some every reduce sort includes join some every 语法:array.every(function(currentValue, index, arr){}, thisValue); function i 阅读全文
摘要:
执行上下文 执行上下文概念 当代码运行时,会产生一个对应的执行环境,在这个环境中,变量会被事先提出来(变量提升),代码从上往下开始执行,就叫做执行上下文。 注:在定义变量是未直接赋值,使用默认值 undefined。 在 JavaScript 的世界里,运行环境有三种,分别是: 全局环境:代码首先进 阅读全文