2012年2月9日

ECMA-262-3 in detail. Chapter 6. Closures.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/chapter-6-closures/IntroductionIn this article we will talk about one of the most discussed topics related with JavaScript — aboutclosures. The topic, as a matter of fact, is not new and was discussed many times. However we will try to discuss and understan 阅读全文

posted @ 2012-02-09 18:31 wyman25 阅读(215) 评论(0) 推荐(0) 编辑

ECMA-262-3 in detail. Chapter 5. Functions.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/chapter-5-functions/IntroductionIn this article we will talk about one of the general ECMAScript objects — about functions. In particular, we will go through various types of functions, will define how each type influencesvariables objectof a context and wh 阅读全文

posted @ 2012-02-09 18:28 wyman25 阅读(222) 评论(0) 推荐(0) 编辑

ECMA-262-3 in detail. Chapter 3. This.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/chapter-3-this/IntroductionIn this article we will discuss one more detail directly related withexecution contexts. The topic of discussion is thethiskeyword.As the practice shows, this topic is difficult enough and often causes issues in determination ofth 阅读全文

posted @ 2012-02-09 18:24 wyman25 阅读(246) 评论(0) 推荐(0) 编辑

ECMA-262-3 in detail. Chapter 4. Scope chain.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/chapter-4-scope-chain/IntroductionAs we already know from thesecond chapterconcerning thevariable object, the data of anexecution context(variables, function declarations, and formal parameters of functions) are stored as properties of the variables object. 阅读全文

posted @ 2012-02-09 18:20 wyman25 阅读(230) 评论(0) 推荐(0) 编辑

ECMA-262-3 in detail. Chapter 2. Variable object.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/chapter-2-variable-object/IntroductionAlways in programs we declare functions and variables which then successfully use building our systems. But how and where the interpreter finds ourdata(functions, variable)? What occurs, when we reference to needed obje 阅读全文

posted @ 2012-02-09 18:11 wyman25 阅读(279) 评论(0) 推荐(0) 编辑

ECMA-262-3 in detail. Chapter 1. Execution Contexts.

摘要: 转载地址http://dmitrysoshnikov.com/ecmascript/chapter-1-execution-contexts/IntroductionIn this note we will mention execution contexts of ECMAScript and types of executable code related with them.DefinitionsEvery time when control is transferred to ECMAScript executable code, control is entered anexecut 阅读全文

posted @ 2012-02-09 18:07 wyman25 阅读(331) 评论(0) 推荐(0) 编辑

JavaScript. The core.

摘要: 转载地址:http://dmitrysoshnikov.com/ecmascript/javascript-the-core/This note is an overview and summary of the “ECMA-262-3 in detail” series. Every section contains references to the appropriate matching chapters so you can read them to get a deeper understanding.Intended audience: experienced programme 阅读全文

posted @ 2012-02-09 17:54 wyman25 阅读(187) 评论(0) 推荐(0) 编辑

导航