position: absolute和position: relative是相对什么进行定位?
See the Pen relative and absolute by zeng (@zengxiaoluan) on CodePen.
又到了一年的春天跳槽季(感觉年底才是最好的跳槽时机),无论要不要跳槽,浑水摸鱼,趁机面试几家也是好的。
See the Pen relative and absolute by zeng (@zengxiaoluan) on CodePen.
笔试题目来自芋头君的知乎live,他在live中要求题目不要公开,但是有几个人这么注重知识版权并信守诺言呢,何况我还是拿来无偿分享和造福前端开发者。 继续阅读“小芋头君的前端笔试题”
写代码和做代码题目还是有很大差别的
1,如果数组里的某两个元素相加等于16,则去除这两个元素。如 [1,3,1,15,13,2,16,0] ==》[1,2]。
实现代码:
// 1.如果数组里的值某两个相加等于16,则删掉 var arr = [1,3,1,15,13,2,16,0]; arr.forEach(function( item1, index1 ){ arr.forEach(function( item2, index2 ){ if ( index1!=index2 && item1+item2==16 ) { arr[index1] = '#'; arr[index2] = '#'; } }) }) var newArr = arr.filter(function(item){ if ( item == '#' ) { return false; }else{ return true; } }) console.log(arr, newArr);
点评:这个题目考察数组操作是否熟练,和实现思路。
继续阅读“几个前端面试题”