TAILIEUCHUNG - Phát triển Javascript - part 19

Tham khảo tài liệu 'phát triển javascript - part 19', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Object Composition and Mixins 153 accept an optional properties argument. We will discuss this method further in Chapter 8 ECMAScript 5th Edition. The tddj Method Often we want to borrow behavior from one or more other objects to build the functionality we re after. We ve seen this a couple of times already. Remember the arguments object It acts roughly like an array but it is not a true array and as such lacks certain properties we might be interested in. The arguments object does however possess the most important aspects of an array the length property and numerical indexes as property names. These two aspects are enough for most methods on to consider arguments an object that walks like a duck swims like a duck and quacks like a duck and therefore is a duck or rather an array . This means that we can borrow methods from by calling them with arguments as this as seen in Listing . Listing Borrowing from test arguments should borrow from function function addToArray var args arguments var arr return args var result addToArray 1 2 3 assertEquals 1 2 3 result The example borrows the slice function and calls it on the arguments object. Because we don t give it any other arguments it will return the whole array but the trick is now we ve effectively converted arguments to an array on which we can call the usual array methods. Remember in Chapter 5 Functions we illustrated implicit binding of this by copying a function from one object to another. Doing so causes both objects to share the same function object so it s a memory efficient way to share behavior. Listing shows an example. Download from 154 Objects and Prototypal Inheritance Listing Borrowing explicitly test arguments should borrow explicitly from function function addToArray var args .

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.