要求
获取当前页面已 Fork 的成员列表,存储在数组。代码短,耗时少者更佳。返回数组长度应该是 1000。
地址
https://github.com/facebook/react/network/members
示例代码
// 时间和函数长度统计
function timeAndLengthCount(callback){
const timeStart = new Date().getTime()
callback()
const timeEnd = new Date().getTime()
console.log('Time: ' + (timeEnd-timeStart) + 'ms')
console.log('Len: '+ callback.toString().length)
}
// 执行输出 Fork 成员列表的函数
// Time: 7ms
// Len: 223
timeAndLengthCount(()=>{
const forkedMenber = document.querySelectorAll('.repo > a:nth-child(odd)');
const forkedMenberList = [];
[].forEach.call(forkedMenber, z => forkedMenberList.push(z.innerHTML));
console.log(forkedMenberList);
})
接下来就是开始你的表演了
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.