Enumerable is an abstract object (it should be noted that there is no concept of class in JavaScript, and the class referred to is a function. Inheritance generally refers to an object (parent) copying its method attributes (through Object.extend, Copy is a reference) to the prototype attribute (an object) of the subclass (function)) Enumerable cannot be used directly. It is inherited by many enumeration types (Hash, Array, Range, etc.), and the inherited types must implement an_ Each method provides specific types of enumeration methods. Enumerable provides the following methods for other subclasses: each(iterator): iterator is a function object. This method calls the _each method of a specific type to contain itself. Each object calls iterator. For example, if Enumerable specifically refers to an Array, eg: var a=[2,3,4], then the a.each(iterator) method will call iterator(2,0), iterator( 3,1), iterator(4,3), where the second parameter refers to the index. This method is used in almost every method in Enumerable eachSlice(number, iterator): Separates each Enumerable type object according to number, such as [1,2,3,4, 5].eachSlice(3)=>[[1,2,3],[4,5]], if no iterator is provided, then iterator=Prototype.K: function(k){return k}, many iterators in Prototype The default value is this, or Prototype.emptyFunction: function() {}. In fact, what is actually returned is [iterator([1,2,3]), iterator([4,5])] all( iterator): Call iterator for each value in the Enumerable type. If one of them returns false, it returns false, otherwise it returns true, which is equivalent to judging whether each value of the iterator is "true" any (iterator): Contrary to all, determine whether each value is "false" (whether one value is true) collect(iterator)/map: Call iterator for each value, and The results form a new array and return detect(iterator)/find: Call iterator on each value. If one of the values is not false, return the value that is not false after executing the iterator (not return to execute the iterator value after), equivalent to finding the first true value findAll(iterator)/select: is equivalent to detect, but finding all true values and returning an array grep(pattern, iterator ): Returns all values that match the pattern. If the iterator is provided, it returns the value of the iterator. include(object)/member: Whether the array contains object inGroupsOf(number, fillWith): A variant version of eachSlice that separates objects by number. If the length of the last value of the separated array is less than number, it is filled with fillwith, such as [1,2,3,4,5].inGroupsOf(3) =>[[1,2,3],[4,5,null]] inject(memo, iterator): injectinvoke(method): call max( iterator): Maximum valuemin(iterator): Minimum valuepartition(iterator): Separationpluck(property): Collectionreject( iterator): Unqualified products, the opposite of findAllsortBy(iterator): Sort according to iterator, if the called object is Array, just call the built-in sort(iterator) directly toArray()/entries: Form each value of the calling object into an array and return zip(): For example, [2,3,4].zip([5,6,7])= >[[2,5],[3,6],[4,7]], If the last parameter type is function, it will return [iterator([2,5]),iterator([3,6]), iterator([4,7])], inspect(): The string of the Enumerable object represents NND. It turns out that Enumerable has so many functions. I feel that the author has studied Ruby too much and used all methods. Moving on to Prototype, we have to study hard. Prototype files are getting bigger and bigger, which wastes bandwidth. I find that many of the functions become more difficult to understand the more they are explained. You should read more about the source code to understand. My writing skills are really poor, and some people really don’t know how to express them. I hope everyone will just regard this article as an informal reference. If you have any questions, you should read the source code to understand. Otherwise, I will not be responsible for misleading you.

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
