上一期說好的node.js的核心模塊進階以及基本web應用的使用將在2號或者3號與你們見面,在此以前我想跟你們分享幾個前端經典的面試題,爲何我忽然想寫這麼一篇文章呢?今天我應公司要求去面試了下幾位招聘者,而後又現場整不出幾個難題,就搜了一下前端變態面試題! HAHA,前提我並非一個變態 欺負人的面試官.只是我但願看看對方的邏輯能力!html
從而又拿這些面試題進行了自我檢測,發現仍是有一些坑的~~~
接下與你們進行幾道題的分析 分享 互勉!前端
先把我挑選的幾道,不必定最經典.可是會讓你有學習的進步!列舉一下node
//第1題 ["1", "2", "3"].map(parseInt) //第2題 [ [3,2,1].reduce(Math.pow), [].reduce(Math.pow) ] //第3題 var ary = [0,1,2]; ary[10] = 10; ary.filter(function(x) { return x === undefined;}); //第4題 [typeof null, null instanceof Object] //第5題 function sidEffecting(ary) { ary[0] = ary[2]; } function bar(a,b,c) { c = 10 sidEffecting(arguments); return a + b + c; } bar(1,1,1) //第六題 var END = Math.pow(2, 53); var START = END - 100; var count = 0; for (var i = START; i <= END; i++) { count++; } console.log(count);
你們努力思考,努力!==============================================web
第一題:面試
["1", "2", "3"].map(parseInt)
這道題知識點包括:segmentfault
按照上面知識點來串一下這道題!數組
首先, map接受兩個參數, 一個回調函數 callback, 一個回調函數的this值 其中回調函數接受三個參數 currentValue, index, arrary; 而題目中, map只傳入了回調函數--parseInt. 其次, parseInt 只接受兩個兩個參數 string, radix(基數). 本題理解來講也就是key與 index 因此本題即問 parseInt('1', 0); parseInt('2', 1); parseInt('3', 2); 首前後二者參數不合法. 因此答案是 [1, NaN, NaN] 若是研究理解了 parseInt(3, 8) parseInt(3, 2) //下方評論該題答案 別做弊哦! parseInt(3, 0)
第二題:app
[ [3,2,1].reduce(Math.pow), [].reduce(Math.pow) ]
這道題知識點:ide
穿插知識點來一次這道題!函數
arr.reduce(callback[, initialValue]) reduce接受兩個參數, 一個回調, 一個初始值. 回調函數接受四個參數 previousValue, currentValue, currentIndex, array 須要注意的是 If the array is empty and no initialValue was provided, TypeError would be thrown. 因此第二個表達式會報異常. 第一個表達式等價於 Math.pow(3, 2) => 9; Math.pow(9, 1) =>9
答案 an
error
第三題:
var ary = [0,1,2]; ary[10] = 10; ary.filter(function(x) { return x === undefined;}); 答案是 []
知識點是:
咱們來看一下 Array.prototype.filter 的 polyfill:
if (!Array.prototype.filter) { Array.prototype.filter = function(fun/*, thisArg*/) { 'use strict'; if (this === void 0 || this === null) { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; if (typeof fun !== 'function') { throw new TypeError(); } var res = []; var thisArg = arguments.length >= 2 ? arguments[1] : void 0; for (var i = 0; i < len; i++) { if (i in t) { // 注意這裏!!! var val = t[i]; if (fun.call(thisArg, val, i, t)) { res.push(val); } } } return res; }; }
咱們看到在迭代這個數組的時候, 首先檢查了這個索引值是否是數組的一個屬性, 那麼咱們測試一下.
0 in ary; => true 3 in ary; => false 10 in ary; => true
也就是說 從 3 - 9 都是沒有初始化的bug
!, 這些索引並不存在與數組中. 在 array 的函數調用的時候是會跳過這些坑的.
第四題:
[typeof null, null instanceof Object]
知識點:
typeof 返回一個表示類型的字符串.
instanceof 運算符用來檢測 constructor.prototype 是否存在於參數 object 的原型鏈上.
這個題能夠直接看連接... 由於 typeof null === 'object' 自語言之初就是這樣....
typeof 的結果請看下錶:
type result Undefined "undefined" Null "object" Boolean "boolean" Number "number" String "string" Symbol "symbol" Host object Implementation-dependent Function "function" Object "object"
因此答案 [object, false]
第五題:
function sidEffecting(ary) { ary[0] = ary[2]; } function bar(a,b,c) { c = 10 sidEffecting(arguments); return a + b + c; } bar(1,1,1)
知識點:
首先 The arguments object is an Array-like object corresponding to the arguments passed to a function.
也就是說 arguments 是一個 object, c 就是 arguments[2], 因此對於 c 的修改就是對 arguments[2] 的修改.
因此答案是 21.
可是!!!!
當函數參數涉及到 any rest parameters, any default parameters or any destructured parameters 的時候, 這個 arguments 就不在是一個 mapped arguments object 了.....
請看:
function sidEffecting(ary) { ary[0] = ary[2]; } function bar(a,b,c=3) { c = 10 sidEffecting(arguments); return a + b + c; } bar(1,1,1)
答案是 12 !!!!
請慢慢體會!!
第六題:
咳咳咳!
細心的小夥伴發現了我第6
題不是第6
題而是第六
題
其實這個是給大家留下一個思考的題 若是有疑問或者探討請留言!
這是2017年的最後一篇文章了!我是今年2017年11月7號建立的這個帳號,準確來講是12月初走進segmentfault社區你們庭的(纔開始接觸答題文章頭條等等),一個月的時間感受這個社區和別的不同的地方不少,玩的挺開心!玩社區歷來沒寫過文章,來到這或許這個也是我我的的一大邁步把!但願你們和我一塊兒走下去! 進步!進步!