44 個 Javascript 變態題解析 (上)

原題來自: javascript-puzzlers(http://javascript-puzzlers.herokuapp.com/)javascript

 

讀者能夠先去作一下感覺感覺. 當初筆者的成績是 21/44…java

 

當初筆者作這套題的時候不只懷疑智商, 連人生都開始懷疑了….編程

 

不過, 對於基礎知識的理解是深刻編程的前提. 讓咱們一塊兒來看看這些變態題到底變態不變態吧!數組

 

第1題app

 

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

 

知識點:函數

 

  • Array/map測試

  • Number/parseIntthis

  • JavaScript parseIntprototype

 

首先, map接受兩個參數, 一個回調函數 callback, 一個回調函數的this值

 

其中回調函數接受三個參數 currentValue, index, arrary;

 

而題目中, map只傳入了回調函數–parseInt.

 

其次, parseInt 只接受兩個兩個參數 string, radix(基數).

 

可選。表示要解析的數字的基數。該值介於 2 ~ 36 之間。

 

若是省略該參數或其值爲 0,則數字將以 10 爲基礎來解析。若是它以 「0x」 或 「0X」 開頭,將以 16 爲基數。

 

若是該參數小於 2 或者大於 36,則 parseInt() 將返回 NaN。

 

因此本題即問

 

parseInt('1', 0);

parseInt('2', 1);

parseInt('3', 2);

 

首前後二者參數不合法.

 

因此答案是 [1, NaN, NaN]

 

第2題

 

[typeof null, null instanceof Object]

 

兩個知識點:

 

  • Operators/typeof

  • Operators/instanceof

  • 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]

 

第3題

 

[ [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

 

第4題

 

var val = 'smtg';

console.log('Value is ' + (val === 'smtg') ? 'Something' : 'Nothing');

 

兩個知識點:

 

  • Operators/Operator_Precedence

  • Operators/Conditional_Operator

 

簡而言之 + 的優先級 大於 ?

 

因此原題等價於 'Value is true' ? 'Somthing' : 'Nonthing' 而不是 'Value is' + (true ? 'Something' : 'Nonthing')

 

答案 'Something'

 

第5題

 

var name = 'World!';

(function () {

    if (typeof name === 'undefined') {

        var name = 'Jack';

        console.log('Goodbye ' + name);

    } else {

        console.log('Hello ' + name);

    }

})();

 

這個相對簡單, 一個知識點:

 

  • Hoisting

 

在 JavaScript中, functions 和 variables 會被提高。變量提高是JavaScript將聲明移至做用域 scope (全局域或者當前函數做用域) 頂部的行爲。

 

這個題目至關於

 

var name = 'World!';

(function () {

    var name;

    if (typeof name === 'undefined') {

        name = 'Jack';

        console.log('Goodbye ' + name);

    } else {

        console.log('Hello ' + name);

    }

})();

 

因此答案是 'Goodbye Jack'

 

第6題

 

var END = Math.pow(2, 53);

var START = END - 100;

var count = 0;

for (var i = START; i <= END; i++) {

    count++;

}

console.log(count);

 

一個知識點:

 

  • Infinity

 

在 JS 裏, Math.pow(2, 53) == 9007199254740992 是能夠表示的最大值. 最大值加一仍是最大值. 因此循環不會停.

 

第7題

 

var ary = [0,1,2];

ary[10] = 10;

ary.filter(function(x) { return x === undefined;});

 

答案是 []

 

看一篇文章理解稀疏數組

 

  • 譯 JavaScript中的稀疏數組與密集數組

  • Array/filter

 

咱們來看一下 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 都是沒有初始化的’坑’!, 這些索引並不存在與數組中. 在 array 的函數調用的時候是會跳過這些’坑’的.

 

第8題

 

var two   = 0.2

var one   = 0.1

var eight = 0.8

var six   = 0.6

[two - one == one, eight - six == two]

 

  • JavaScript的設計缺陷?浮點運算:0.1 + 0.2 != 0.3

 

IEEE 754標準中的浮點數並不能精確地表達小數

 

那何時精準, 何時不經準呢? 筆者也不知道…

 

答案 [true, false]

 

第9題

 

function showCase(value) {

    switch(value) {

    case 'A':

        console.log('Case A');

        break;

    case 'B':

        console.log('Case B');

        break;

    case undefined:

        console.log('undefined');

        break;

    default:

        console.log('Do not know!');

    }

}

showCase(new String('A'));

 

兩個知識點:

 

  • Statements/switch

  • String

 

switch 是嚴格比較, String 實例和 字符串不同.

 

var s_prim = 'foo';

var s_obj = new String(s_prim);

 

console.log(typeof s_prim); // "string"

console.log(typeof s_obj);  // "object"

console.log(s_prim === s_obj); // false

 

答案是 'Do not know!'

 

第10題

 

function showCase2(value) {

    switch(value) {

    case 'A':

        console.log('Case A');

        break;

    case 'B':

        console.log('Case B');

        break;

    case undefined:

        console.log('undefined');

        break;

    default:

        console.log('Do not know!');

    }

}

showCase2(String('A'));

 

解釋:

String(x) does not create an object but does return a string, i.e. typeof String(1) === "string"

 

仍是剛纔的知識點, 只不過 String 不只是個構造函數 直接調用返回一個字符串哦.

 

答案 'Case A'

 

第11題

 

function isOdd(num) {

    return num % 2 == 1;

}

function isEven(num) {

    return num % 2 == 0;

}

function isSane(num) {

    return isEven(num) || isOdd(num);

}

var values = [7, 4, '13', -9, Infinity];

values.map(isSane);

 

一個知識點

 

  • Arithmetic_Operators#Remainder

 

此題等價於

 

7 % 2 => 1

4 % 2 => 0

'13' % 2 => 1

-9 % % 2 => -1

Infinity % 2 => NaN

 

須要注意的是 餘數的正負號隨第一個操做數.

 

答案 [true, true, true, false, false]

 

第12題

 

parseInt(3, 8)

parseInt(3, 2)

parseInt(3, 0)

 

第一個題講過了, 答案 3, NaN, 3

 

第13題

 

Array.isArray( Array.prototype )

 

一個知識點:

 

  • Array/prototype

 

一個不爲人知的實事: Array.prototype => [];

 

答案: true

 

第14題

 

var a = [0];

if ([0]) {

  console.log(a == true);

} else {

  console.log("wut");

}

 

  • JavaScript-Equality-Table

 

答案: false

 

第15題

 

[]==[]

 

== 是萬惡之源, 看上圖

 

答案是 false

 

第16題

 

'5' + 3

'5' - 3

 

兩個知識點:

 

  • Arithmetic_Operators#Addition

  • Arithmetic_Operators#Subtraction

 

+ 用來表示兩個數的和或者字符串拼接, -表示兩數之差.

 

請看例子, 體會區別:

 

> '5' + 3

'53'

> 5 + '3'

'53'

> 5 - '3'

2

> '5' - 3

2

> '5' - '3'

2

 

也就是說 - 會盡量的將兩個操做數變成數字, 而 + 若是兩邊不都是數字, 那麼就是字符串拼接.

 

答案是 '53', 2

 

第17題

 

1 + - + + + - + 1

 

這裏應該是(倒着看)

 

1 + (a)  => 2

a = - (b) => 1

b = + (c) => -1

c = + (d) => -1

d = + (e) => -1

e = + (f) => -1

f = - (g) => -1

g = + 1   => 1

 

因此答案 2

 

第18題

 

var ary = Array(3);

ary[0]=2

ary.map(function(elem) { return '1'; });

 

稀疏數組. 同第7題.

 

題目中的數組實際上是一個長度爲3, 可是沒有內容的數組, array 上的操做會跳過這些未初始化的’坑’.

 

因此答案是 ["1", undefined × 2]

 

這裏貼上 Array.prototype.map 的 polyfill.

 

Array.prototype.map = function(callback, thisArg) {

 

        var T, A, k;

 

        if (this == null) {

            throw new TypeError(' this is null or not defined');

        }

 

        var O = Object(this);

        var len = O.length >>> 0;

        if (typeof callback !== 'function') {

            throw new TypeError(callback + ' is not a function');

        }

        if (arguments.length > 1) {

            T = thisArg;

        }

        A = new Array(len);

        k = 0;

        while (k < len) {

            var kValue, mappedValue;

            if (k in O) {

                kValue = O[k];

                mappedValue = callback.call(T, kValue, k, O);

                A[k] = mappedValue;

            }

            k++;

        }

        return A;

    };

 

第19題

 

function sidEffecting(ary) {

  ary[0] = ary[2];

}

function bar(a,b,c) {

  c = 10

  sidEffecting(arguments);

  return a + b + c;

}

bar(1,1,1)

 

這是一個大坑, 尤爲是涉及到 ES6語法的時候

 

知識點:

 

  • 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 !!!!

 

請讀者細細體會!!

 

第20題

 

var a = 111111111111111110000,

    b = 1111;

a + b;

 

答案仍是 111111111111111110000. 解釋是 Lack of precision for numbers in JavaScript affects both small and big numbers. 可是筆者不是很明白……………. 請讀者賜教!

 

第21題

 

var x = [].reverse;

x();

 

這個題有意思!

 

知識點:

 

  • Array/reverse

 

The reverse method transposes the elements of the calling array object in place, mutating the array, and returning a reference to the array.

 

也就是說 最後會返回這個調用者(this), 但是 x 執行的時候是上下文是全局. 那麼最後返回的是 window.

 

答案是 window

 

第22題

 

Number.MIN_VALUE > 0

 

今天先到這裏, 下次咱們來看後22個題!

相關文章
相關標籤/搜索