前端經典面試題 不經典不要star!

前言

(如下內容爲一個朋友所述)今天我想跟你們分享幾個前端經典的面試題,爲何我忽然想寫這麼一篇文章呢?今天我應公司要求去面試了下幾位招聘者,而後又現場整不出幾個難題,就搜了一下前端變態面試題! HAHA,前提我並非一個變態,欺負人的面試官.只是我但願看看對方的邏輯能力!javascript

從而又拿這些面試題進行了自我檢測,發現仍是有一些坑的~~~
接下與你們進行幾道題的分析 分享 互勉!前端

正文

先把我挑選的幾道,不必定最經典.可是會讓你有學習的進步!列舉一下java

//第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); 

讀者思考時間

你們努力思考,努力!==============================================面試

接下來一道一道我們去慢慢解析

第一題:json

["1", "2", "3"].map(parseInt) 

這道題知識點包括:數組

  1. Array/map
  2. Number/parseInt
  3. JavaScript parseInt

按照上面知識點來串一下這道題!app

首先, 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) 

第二題:ide

[ [3,2,1].reduce(Math.pow), [].reduce(Math.pow) ]

這道題知識點:函數

  • Array/Reduce

穿插知識點來一次這道題!學習

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]

知識點:

  1. Operators/typeof
  2. Operators/instanceof

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) 

知識點:

  • Functions/arguments

首先 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題而是第
其實這個是給大家留下一個思考的題 若是有疑問或者探討請留言!

【我有一個前端學習交流QQ羣:328058344 若是你在學習前端的過程當中遇到什麼問題,歡迎來個人QQ羣提問,羣裏天天還會更新一些學習資源。禁止閒聊,非喜勿進。】

相關文章
相關標籤/搜索