- 浏览: 2613469 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (1286)
- js-oop (2)
- js-window (10)
- js-event (19)
- js-string (37)
- js-array (27)
- js-page (4)
- js-dom (62)
- js-lang (8)
- js-number (7)
- js-platform (3)
- js-object (15)
- js-element (3)
- js-browser (7)
- js-url (6)
- js-date (10)
- css基础 (48)
- css优化 (15)
- html基础 (17)
- html标签 (19)
- js基础 (117)
- js-兼容性差异 (33)
- js引擎 (3)
- js性能 (14)
- json (6)
- jQuery源码浅析 (43)
- web mobile开发资料 (78)
- js跨域 (2)
- html5 (74)
- html5-canvas (7)
- css3 (53)
- 浏览器 (5)
- api设计学 (3)
- js-加载 (3)
- linux (37)
- 架构师 (1)
- php (2)
- self开发的脚本库--凤凰 (2)
- web应用名词 (6)
- javascript新特性翻译 (8)
- ajax (6)
- jQuery动画效果 (7)
- prototype的解读 (13)
- 优秀插件翻译 (1)
- css解决方案 (26)
- 数据库 (2)
- english daily (59)
- 浏览器内核探究 (1)
- jQuery插件介绍 (9)
- jquery基础篇 (26)
- chrome浏览器问题整理 (14)
- js选择器那些事 (3)
- 前端框架 (26)
- Firefox私有属性 (11)
- webkit私有属性集合 (17)
- 书籍推荐 (21)
- 数据结构 (1)
- 网站建设相关 (7)
- 好文翻译 (2)
- 个人作品 (3)
- kissy的解读 (4)
- css-layout(布局研究) (5)
- less研究 (1)
- YUI探究 (1)
- hash探究 (1)
- js动画 (7)
- 前端面试题 (37)
- css书写规范 (1)
- js模板引擎 (6)
- js模块化 (19)
- 编写高质量代码 (3)
- 性能探究--应用协议 (2)
- 前端图像处理 (19)
- Mac OS相关 (21)
- 正则表达式 (11)
- 离线应用相关 (0)
- 前端工具 (65)
- nodeJS (55)
- jquery优化篇 (2)
- 设计模式探究系列 (3)
- windows7 (2)
- IE10 (10)
- 微博开放平台探究 (2)
- 常用web服务接口 (1)
- 数据存储相关 (8)
- 零时文件 (2)
- jQuery Mobile (16)
- backbone (15)
- underscore (22)
- sass (11)
- android (3)
- phonegap (10)
- IE私有 (11)
- qwrap (8)
- git (14)
- chrome extensions (5)
- freemarker (11)
- angularJS (3)
- seo (2)
- markdown (3)
- css动画 (4)
- 安卓开发 (2)
- React (7)
- 活动页技术 (1)
- 网络安全 (3)
- grunt (7)
- Lo-Dash (3)
- 前端国际化 (4)
- 版本控制 (2)
- 盒模型 (4)
- 微信开发 (1)
- Mock数据工具 (1)
- sails (1)
- vim (1)
- js-color (1)
- iOS 基础 (43)
最新评论
-
jertom:
<div id="showInfo" ...
addEventListener等事件监听的参数细谈 -
乌托邦国王:
引用[u][/u]
css3动画属性系列之transform细讲移动translate -
hvang1988:
能提供附件下载吗,找不到js库,google封了访问不了
Syntaxhighlighter---代码高亮插件介绍 -
sscsacdsadcsd:
我的天 那到底是为什么function是object我看und ...
typeof func ==='function'的疑惑 -
wkjiangwk:
试了,没用,你们从不去测试。
介绍一下x-webkit-speech -------实现语音输入
整理部分prototype的Array相关的api
1、first()
原api的用途:
Returns the first item in the array,or undefined if the array is empty.
返回数组的第一项或者当数组为空时,返回undefined
用例:
["zhang","yao","chun"].first(); //"zhang" [].first(); //undefined
源码展示:
first : function(){ return this[0]; }
2、last()
原api的用途:
Returns the last item in the array,or undefined if the array is empty.
返回数组的最后一项,或者当数组为空时,返回undefined
用例:
["zhang","yao","chun"].last(); //"chun" [].last(); //undefined
源码展示:
last: function(){ return this[this.length - 1]; }
3、clone()
原api的用途:
Returns a duplicate of the array,leaving the original array intact.
返回原来数组的复制,原来那个数组没有任何变化。
用例:
["zhang","yao","chun"].clone(); //["zhang","yao","chun"]
源码展示:
clone:function(){ return [].concat(this); }
发表评论
-
array的reduce
2014-04-27 20:12 3563ES5 (js 1.8)加入了 reduce ... -
[]的二义性
2013-06-06 19:43 1057先看一道题: //a赋值的是[und ... -
array中最后一个空元素的差异
2013-06-05 16:53 1455本文来自w3help的一篇《SJ2007: ... -
qwrap-hashset之intersect
2013-04-25 18:55 1328本文开始载入qwrap的几个hashset相 ... -
qwrap-hashset之union
2013-04-25 17:43 1412本文开始载入qwrap的几个hashset相 ... -
underscore之size
2013-02-28 17:29 1532size _.size(l ... -
underscore的数组操作之first与last
2013-02-26 13:21 1459first (居然还有两个别名:he ... -
underscore的数组操作之difference
2013-02-26 11:04 2052difference _.di ... -
删除数组的偶数项
2013-01-06 17:04 4050问题:要删除指定数组中偶数索引的item? ----- ... -
字符串times化
2012-11-30 17:44 1395问题:把一个指定的字符串按照指定的个数进行复制输出! ... -
array的unshift
2012-06-28 18:09 1182Array unshift方法 ------ ... -
array的pop()
2012-05-27 19:11 1503pop()方法 ------- 删除并返回 ... -
array的concat()
2012-05-27 18:23 2140concat()方法 ------- 用于连接 ... -
JavaScript1.8.5新特性系列Array.isArray
2012-05-08 14:14 1740以前也写过一篇常见判断isArray, 在JavaS ... -
YUI研习--Array篇
2012-05-06 21:08 1809前言: 关于array相关 ... -
YUI研习--Array篇
2012-05-06 20:30 3前言: 关于array相关的api其实已经 ... -
prototype的解读之String的几个检索api
2012-04-06 17:26 1703本篇简单地列举了prototype的几个String下检索的a ... -
prototype的解读之String的capitalize
2012-04-05 21:32 1359从这个api的命名我们很直观地就应该知道是首字母大写的操作。 ... -
prototype的解读之String的camelize
2012-04-05 21:24 2693其实这个api的作用和我前面写的 目标字符串驼峰化 功能上是一 ... -
关于浏览器的判断整理
2012-03-21 11:42 1691这篇主要是整理一下ua下的判定。 关于docume ...
相关推荐
所有数组的方法都定义在Array.prototype上,而Array.prototype本身也是一个数组。 array.concat() 浅复制一份当前数组,并把接收到的参数附加到新数组的末尾。原数组不改变。 语法 array.concat(value1, value2, …,...
《Prototype 1.4.0 源码解读:深入理解JavaScript库的基石》 Prototype 是一个著名的JavaScript库,它的1.4.0版本在Web开发领域有着广泛的使用。这个库为JavaScript程序员提供了许多实用的功能,包括对象扩展、类...
7. 其他实用工具:Prototype还包含了一些实用工具函数,如`Array.from()`, `String.camelize()`, `Number.toColorPart()`等,这些函数极大地提高了代码的可读性和效率。 在学习Prototype 1.4源码时,建议结合实际...
- Prototype 1.4扩展了数组和字符串的方法,如`Array.prototype.each()`, `Array.prototype.indexOf()`, `String.prototype.startsWith()`, `String.prototype.endsWith()`等,使得处理数组和字符串变得更加方便。...
"prototype.js 1.4.0 开发笔记中文版"很可能提供了针对该版本的详细解读和开发实践,对于学习和理解Prototype API 的具体用法和最佳实践非常有帮助。 综上所述,Prototype API 和 Scriptaculous 提供了丰富的...
- Prototype 对 Object、Number、Function、String、Array、Event 等原生对象进行了扩展,添加了诸如 `each()`, `any()`, `collect()` 等方法,提高了代码的可读性和效率。 3. **Ajax 支持**: - `Ajax.Request` ...
1. **对象扩展**:Prototype.js的核心在于它对JavaScript原生对象的扩展,如Array、String、Function等。例如,它增加了数组的`each`方法,使得遍历数组变得更加简洁;String类则新增了诸如`trim`和`startsWith`等...
《最新Prototype手册》详细解读 Prototype.js 是一个广泛使用的JavaScript库,它为浏览器环境提供了许多实用的功能,大大简化了JavaScript的开发。这份“最新Prototype手册”深入探讨了这个库的核心特性,旨在帮助...
Prototype.js 包含了许多实用工具函数,例如`Object.extend`用于合并对象,`Array.clone`用于复制数组,以及`String.startsWith`和`String.endsWith`等方法,它们极大地提高了开发效率。 **与Ruby的关联** ...
Array.prototype.flat() The flat() method creates a new array with all sub-array elements concatenated into it recursively up to the specified depth. — MDN 简单来说flat这个函数就是按照一定的深度depth...
- `$()` 函数:这是Prototype.js 最为人所知的功能之一,它是一个便捷的语法糖,用于获取DOM元素,类似于`document.getElementById()`。但它允许传入多个ID并返回一个包含所有匹配元素的数组。例如: ```html ...
return Object.prototype.toString.call(arg) === '[object Array]'; } ``` 这段代码的核心在于`Object.prototype.toString.call()`。这个方法会返回一个表示该对象的字符串。当对数组调用此方法时,它会返回`"...
《jQuery源码解读:深入理解JavaScript面向对象》 在深入探讨jQuery源码之前,我们必须首先理解JavaScript中的面向对象编程概念,因为jQuery的核心机制大量运用了这一思想。面向对象编程是软件开发中的一个重要范式...
18. **Set.prototype.forEach()**:遍历Set中的元素,类似于Array.prototype.forEach。 19. **Array.prototype.findIndex()**:查找元素索引,与.find()类似,但返回的是索引而非元素。 20. **Array.prototype....
ECMAScript 5.1引入了一些新特性,如`Array.prototype.forEach`, `Array.prototype.map`, `Array.prototype.filter`等数组方法,以及`Object.create`用于创建新对象,`Object.keys`获取对象所有可枚举属性的数组,`...