Home Web Front-end JS Tutorial Analysis summary of local objects & built-in objects & host objects in js

Analysis summary of local objects & built-in objects & host objects in js

Aug 23, 2018 pm 03:30 PM
built-in objects

The content of this article is about the analysis of local objects & built-in objects & host objects in js. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. Local objects
ECMA-262 defines a native object as an object that is independent of the ECMAScript implementation of the host environment.
Here is a brief talk about the application environment of JavaScript. The application environment of JavaScript consists of the host environment and the runtime environment. The host environment mainly refers to the shell and web browser, etc. The runtime environment is built in by the JavaScript engine.

Now let’s take a look at what local objects are:
Object, Function, Array, String, Number, Date, RegExp, Boolean, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError

2. Built-in objects
ECMA-262 defines built-in objects as: all objects implemented by ECMAScript that are independent of the host environment and appear when the ECMAScript program starts executing.
This means that the built-in objects have already been instantiated, and we do not need to instantiate them anymore. The first thing we will think of here is the Math object.
There are only two built-in objects defined by ECMA-262: Global and Math. (Local objects and built-in objects are independent of the host object. According to the definition, it can be seen that built-in objects are also local objects. All built-in objects in JS are local objects).

Math object is something we often use, but Global is relatively rare. In fact, we often use the Global object, but we don't use the name Global.

Global object is a special object. It is a global object. There is only one in the program. Its existence is accompanied by the life cycle of the entire program. The global object cannot be accessed by name, but it has a window attribute, this attribute points to itself.
Everyone should also be aware that there are no independent functions in ECMAScript. All functions should be methods of an object. Methods similar to isNaN(), parseInt(), parseFloat(), etc. are all methods of the Global object.

3. Host object
Host object: an object provided by the host environment implemented by ECMAScript.
Maybe this is not easy to understand. As mentioned above, the host environment includes the web browser, so we can understand that the objects provided by the browser are host objects.
It can also be understood this way, because local objects are objects in the non-host environment, then non-local objects are host objects, that is, all BOM objects and DOM objects are host objects.
Then there is another kind of object, which is the object defined by ourselves, which is also the host object.

The simplest understanding: Objects not officially defined by ECMAScript belong to host objects.

4. Summary
Local objects are objects defined in ECMAScript, such as String, Date, etc. Built-in objects are a special type of local objects and do not need to be instantiated. , including Global and Math, the host objects are BOM, DOM and self-defined objects.

Related recommendations:

Summary of methods for operating arrays in js (code)

A brief analysis of js event binding & event listening& Contents between event delegates

The above is the detailed content of Analysis summary of local objects & built-in objects & host objects in js. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the built-in objects in Python? What are the built-in objects in Python? Nov 08, 2023 am 10:19 AM

There are ten types of Python built-in objects: "int", "float", "str", "list", "tuple", "dict", "set", "bool", "NoneType" and "function": 1. int , used to represent integer values; 2. float, used to represent real values; 3. str, used to represent text data; 4. list, used to store a series of ordered elements; 5. tuple, tuple type; 6 , dict, a data structure used to store key-value pairs, etc.

What are the built-in objects in asp? What are the built-in objects in asp? Nov 09, 2023 am 11:32 AM

ASP built-in objects include Request, Response, Session, Application, Server, Session.Contents, Application.Contents, Server.CreateObject, Server.MapPath, Server.Execute, Server.Transfer, etc. Detailed introduction: 1. Request: represents HTTP request object, etc.

Learn to use common PHP built-in objects: master the operation and usage of built-in objects Learn to use common PHP built-in objects: master the operation and usage of built-in objects Jan 10, 2024 am 10:02 AM

Master PHP built-in objects: Learn the operation and usage of commonly used built-in objects. Specific code examples are required. As a widely used back-end development language, PHP provides many powerful built-in objects that can help us develop and manage websites efficiently. Mastering the operation and usage of these built-in objects is crucial for PHP developers. This article will introduce some commonly used PHP built-in objects and provide specific code examples. 1. String processing object (String) String processing is often used in Web development, PHP

What are the built-in objects in nodejs? What are the built-in objects in nodejs? Nov 07, 2023 pm 03:33 PM

Nodejs built-in objects include Global, Process, Buffer, Console, Timer, EventEmitter, Stream, File System, HTTP, URL, Query String, Crypto, Path, OS, etc. Detailed introduction: 1. Global: global object, similar to the window object in the browser environment, which can be accessed anywhere; 2. Process, etc.

What are the built-in objects of Vue? What are the built-in objects of Vue? Nov 08, 2023 pm 04:52 PM

Vue's built-in objects include Vue, Vue instance, data, el, options, parent, root, children, slots, scopedSlots, refs, isServer, attrs and listeners. Vue.js is a progressive JavaScript framework for building user interfaces. In Vue.js, there are some built-in objects or global APIs that can be used to create and manage Vue applications.

What are the built-in objects of DOM? What are the built-in objects of DOM? Dec 19, 2023 pm 03:45 PM

dom内置对象有:1、document;2、window;3、navigator;4、location;5、history;6、screen;7、document.documentElement;8、document.body;9、document.head;10、document.title;11、document.cookie。

What are built-in objects What are built-in objects Nov 13, 2023 am 10:40 AM

Built-in objects usually refer to objects with specific functions and properties provided by the programming language itself. These objects are usually part of the programming language and can be used directly in the code without additional import or loading. By using built-in objects, development Users can easily perform various operations, and these objects have the same behavior in different programs.

What are jsp built-in objects What are jsp built-in objects Nov 03, 2023 pm 02:36 PM

JSP built-in objects refer to some predefined objects in JSP. Can be used directly in the page, these built-in objects provide many useful functions and properties, making it easier for developers to process and manipulate data. Common built-in objects in JSP include request object, response object, out object, session object, application object, config object, pageContext object, exception object, etc.

See all articles