TAILIEUCHUNG - Học JavaScript qua ví dụ part 25

Đối tượng JavaScript Core Đối tượng Core là gì? Giống như một quả táo, JavaScript có một lõi, và cốt lõi của nó là các đối tượng. Tất cả mọi thứ bạn làm trong JavaScript sẽ được dựa trên các đối tượng, bạn có thể tạo riêng của bạn như chúng tôi đã làm trong Chương 8, "đối tượng", hoặc sử dụng các đối tượng chính của JavaScript. | chapter 9 JavaScript Core Objects What Are Core Objects Like an apple JavaScript has a core and at its core are objects. Everything you do in JavaScript will be based on objects you may create your own as we did in Chapter 8 Objects or use JavaScript s core objects. Core objects are built right into the language. JavaScript provides built-in objects that deal with the date and time math strings regular expressions numbers and other useful entities. The good news is that the core objects are consistent across different implementations and platforms and were standardized by the ECMAScript specification allowing programs to be portable. Although each object has a set of properties and methods that further define it this book does not detail every one but highlights those that will be used most often. For a complete list of properties and objects go to http . Array Objects An array is a collection of like values called elements such as an array of colors an array of strings or an array of images. Each element of the array is accessed with an index value enclosed in square brackets see Figure . An index is also called a subscript. There are two types of index values a nonnegative integer and a string. Arrays indexed by numbers are called numeric arrays and arrays indexed by strings are called associative arrays see Figure . In JavaScript arrays are built-in objects with some added functionality. red blue green yellow color 0 color 1 color 2 color 3 Figure A numeric Array object called color. Index values are numbers. 213 From the Library of 214 Chapter 9 JavaScript Core Objects hex red FF0000 0000FF 00FF00 hex blue hex green Figure An associative Array object called hex. Index values are strings. Declaring and Populating Arrays Like variables arrays must be declared before they can be used. Let s examine some ways to create an array. Creating an Array Object with new. The new keyword is used .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.