一、数组方法里push、pop、shift、unshift、join、split分别是什么作用。
1.push,pop:
如果用普通的方法给数组删除内容,因为被删除的那个内容还占用数组的位置,显示的值是undefined,那么数组的长度和索引,还有内容和索引对应的位置关系也不会改变。可以通过push和pop来增加和删除数组的内容,并且改变数组的索引和长度以及索引和内容索引对应的位置关系。
2.shift,unshift:
unshift用于向数组添加一个内容,添加的内容自动对应在最小索引值下面(即索引0),后面的内容依次向后排列。
shift用于删除数组的内容,删除的内容为数组的最小索引值对应的内容,后面的内容依次向前排列。
3.join:
使用join向数组里面的内容添加连接符,而且不改变数组的内容;
4.split:
使用split方法将字符串分割为字符串数组,也可以接受可选的第二个参数,用于指定数组的大小并返回此数组。
二、用 splice 实现 push、pop、shift、unshift方法
1.实现push和pop的方法:
2.实现shift和unshift的方法:
三、使用数组拼接出如下字符串
var prod={
name:"女装",
style:["短款","冬季","春装"]
};
function getTpl(data){
//todo
}
var result=getTplStr(prod);//result为下面的字符串
<dl class="product">
<dt>女装</dt>
<dd>短款</dd>
<dd>冬季</dd>
<dd>春装</dd>
</dl>
三、写一个find函数,实现下面的功能
var arr = [ "test", 2, 1.5, false ]
find(arr, "test") // 0
find(arr, 2) // 1
find(arr, 0) // -1
四、写一个函数filterNumeric,把数组 arr 中的数字过滤出来赋值给新数组newarr, 原数组arr不变
arr = ["a", "b", 1, 3, 5, "b", 2];
newarr = filterNumeric(arr); // [1,3,5,2]
function filterNumber(arr){
var newarr=[];
for(var i=0;i<arr.length;i++){
if( typeof arr[i] === 'number' ){
newarr.push(arr[i]);
}
}
console.log(newarr);
}
五、对象obj有个className属性,里面的值为的是空格分割的字符串(和html元素的class特性类似),写addClass、removeClass函数,有如下功能
var obj = {
className: 'open menu'
}
addClass(obj, 'new') // obj.className='open menu new'
addClass(obj, 'open') // 因为open已经存在,所以不会再次添加open
addClass(obj, 'me') // me不存在,所以 obj.className变为'open menu new me'
console.log(obj.className) // "open menu new me"
removeClass(obj, 'open') // 去掉obj.className里面的 open,变成'menu new me'
removeClass(obj, 'blabla') // 因为blabla不存在,所以此操作无任何影响
六、写一个camelize函数,把my-short-string形式的字符串转化成myShortString形式的字符串,如
camelize("background-color") == 'backgroundColor'
camelize("list-style-image") == 'listStyleImage'
七、如下代码输出什么?为什么?
arr = ["a", "b"];
arr.push( function() { alert(console.log('hello hunger valley')) } );
arr[arr.length-1]() // ?
控制台显示hellow hunger valley,弹窗显示undefined。
原因:
八、写一个函数filterNumericInPlace,过滤数组中的数字,删除非数字。要求在原数组上操作
arr = ["a", "b", 1, 3, 4, 5, "b", 2];
//对原数组进行操作,不需要返回值
filterNumericInPlace(arr);
console.log(arr) // [1,3,4,5,2]
九、写一个ageSort函数实现数组中对象按age从小到大排序
var john = { name: "John Smith", age: 23 }
var mary = { name: "Mary Key", age: 18 }
var bob = { name: "Bob-small", age: 6 }
var people = [ john, mary, bob ]
ageSort(people) // [ bob, mary, john ]
十、写一个filter(arr, func)函数用于过滤数组,接受两个参数,第一个是要处理的数组,第二个参数是回调函数(回调函数遍历接受每一个数组元素,当函数返回true时保留该元素,否则删除该元素)。实现如下功能:
function isNumeric (el){
return typeof el === 'number';
}
arr = ["a",3,4,true, -1, 2, "b"]
arr = filter(arr, isNumeric) ; // arr = [3,4,-1, 2], 过滤出数字
arr = filter(arr, function(val) {
return typeof val === "number" && val > 0 }); // arr = [3,4,2] 过滤出大于0的整数
十一、写一个 ucFirst函数,返回第一个字母为大写的字符
ucFirst("hunger") == "Hunger"
十二、写一个函数truncate(str, maxlength), 如果str的长度大于maxlength,会把str截断到maxlength长,并加上...,如
truncate("hello, this is hunger valley,", 10)) == "hello, thi...";
truncate("hello world", 20)) == "hello world"
十三、写一个函数,获取从min到max之间的随机整数,包括min不包括max
十四、写一个函数,获取从min都max之间的随机整数,包括min包括max
十五、写一个函数,获取一个随机数组,数组中元素为长度为len,最小值为min,最大值为max(包括)的随机整数
十六、写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。
function getRandStr(len){
//todo...
}
var str = getRandStr(10); // 0a3iJiRZap