>  기사  >  웹 프론트엔드  >  자바스크립트 비정상 질문 44개 분석 상세 소개

자바스크립트 비정상 질문 44개 분석 상세 소개

黄舟
黄舟원래의
2017-03-07 14:33:591407검색

이런 질문을 했을 때 제 IQ는 물론 제 인생까지 의심하게 됐어요… 프로그래밍 이 비정상적인 질문이 비정상적인지 확인해 보겠습니다!

질문 1

rree

지식 포인트:

    배열/맵
  • Number/parseInt
  • JavaScript parseInt
  • 먼저, map은 콜백 함수 callback 이라는 두 개의 매개변수를 허용합니다. 콜백 함수의 this 값

콜백 함수는 currentValue, index, array;

세 가지 매개변수를 허용합니다.

질문에서 map은 콜백 함수 –parseInt에만 전달됩니다.

두 번째로,parseInt는 두 개의 매개변수 문자열인 기수(radix)만 허용합니다.

선택 사항입니다. 구문 분석할 숫자의 밑수를 나타냅니다. 값은 2~36 사이입니다.

이 인수가 생략되거나 값이 0인 경우 숫자는 10진수로 구문 분석됩니다. "0x" 또는 "0X"로 시작하면 기본 16이 됩니다.

매개변수가 2보다 작거나 36보다 큰 경우,parseInt()는 NaN을 반환합니다.

그래서 이 질문은

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

우선 후자의 두 매개변수는 불법입니다.

그래서 대답은 [1, NaN, NaN]

질문 2

parseInt('1', 0);
parseInt('2', 1);
parseInt('3', 2);

두 가지 지식 포인트:

  • 연산자/유형

  • 연산자/인스턴스

  • Operators/instanceof(中)

typeof는 유형을 나타내는 문자열을 반환합니다.

instanceof 연산자는 constructor.prototype이 존재하는지 감지하는 데 사용됩니다. 프로토타입 체인에 있는

이 질문은 링크에서 바로 보실 수 있습니다...

는 언어 초창기부터 그랬기 때문에... 아래 표를 참고해주세요. typeof null === 'object'

유형:

[typeof null, null instanceof Object]

그래서 대답은

[object, false]

질문 3

type         result
Undefined   "undefined"
Null        "object"
Boolean     "boolean"
Number      "number"
String      "string"
Symbol      "symbol"
Host object Implementation-dependent
Function    "function"
Object      "object"

지식 포인트:

  • 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

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

두 가지 지식 포인트:

  • 연산자/연산자_우선순위

  • 연산자 /Conditional_Operator

간단히 말하면

+?

보다 우선순위가 높으므로 원래 질문은

대신 'Value is true' ? 'Somthing' : 'Nonthing'과 같습니다. 'Value is' + (true ? 'Something' : 'Nonthing')

답은

'Something'

질문 5

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

이것은 비교적 간단하며 지식 포인트입니다:

  • 호이스팅

JavaScript에서는 함수와 변수가 승격됩니다. 변수 호이스팅은 선언을 범위(전역 범위 또는 현재 함수 범위)의 맨 위로 이동하는 JavaScript의 동작입니다.

이 질문은

var name = 'World!';
(function () {
    if (typeof name === 'undefined') {
        var name = 'Jack';
        console.log('Goodbye ' + name);
    } else {
        console.log('Hello ' + name);
    }
})();

와 동일하므로 답은

'Goodbye Jack'

질문 6

var name = 'World!';
(function () {
    var name;
    if (typeof name === 'undefined') {
        name = 'Jack';
        console.log('Goodbye ' + name);
    } else {
        console.log('Hello ' + name);
    }
})();

지식 포인트:

  • Infinity

JS에서는 Math.pow(2, 53) == 9007199254740992가 표현할 수 있는 최대값에 플러스를 더한 값입니다. . 그래서 루프는 멈추지 않을 것입니다.

추가: @jelly7723

js에서 표현할 수 있는 가장 큰 정수는 2가 아닙니다. 53승이지만 1.7976931348623157e+308입니다.

2의 53제곱은 js가 표현할 수 있는 가장 큰 정수는 아니지만, 정확도를 잃지 않고 정확하게 계산할 수 있는 가장 큰 정수입니다. js 권위 있는 가이드를 참고하세요.
9007199254740992 +1 또는 9007199254740992 이는 정확도 문제 때문입니다. 9007199254740992 +11 또는 9007199254740992 +111이면 값이 변경되지만 이때 계산된 결과는 정확도가 떨어지기 때문에 정확한 값이 아닙니다. .

질문 7

var END = Math.pow(2, 53);
var START = END - 100;
var count = 0;
for (var i = START; i <= END; i++) {
    count++;
}
console.log(count);

답은

[]

희소 배열을 이해하려면 기사 읽기

  • 번역 JavaScript의 희소 배열 및 밀집 배열

  • 배열/필터

Array.prototype.filter의 폴리필을 살펴보겠습니다.

var ary = [0,1,2];
ary[10] = 10;
ary.filter(function(x) { return x === undefined;});

이 배열을 반복할 때 먼저 인덱스 값이 배열의 속성인지 확인한 다음 테스트해 보겠습니다.

if (!Array.prototype.filter) {
  Array.prototype.filter = function(fun/*, thisArg*/) {
    &#39;use strict&#39;;

    if (this === void 0 || this === null) {
      throw new TypeError();
    }

    var t = Object(this);
    var len = t.length >>> 0;
    if (typeof fun !== &#39;function&#39;) {
      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;
  };
}

즉, 3부터 9까지가 있습니다. 초기화가 없습니다. '피트'!, 이러한 인덱스는 배열 함수가 호출될 때 건너뜁니다.

질문 8

0 in ary; => true
3 in ary; => false
10 in ary; => true

  • 자바스크립트의 설계 결함? 부동 소수점 연산: 0.1 + 0.2 != 0.3

IEEE 754 표준의

부동 소수점 수는 소수를 정확하게 표현할 수 없습니다.

那什么时候精准, 什么时候不经准呢? 笔者也不知道…

答案 [true, false]

第9题

function showCase(value) {
    switch(value) {
    case &#39;A&#39;:
        console.log(&#39;Case A&#39;);
        break;
    case &#39;B&#39;:
        console.log(&#39;Case B&#39;);
        break;
    case undefined:
        console.log(&#39;undefined&#39;);
        break;
    default:
        console.log(&#39;Do not know!&#39;);
    }
}
showCase(new String(&#39;A&#39;));

两个知识点:

  • Statements/switch

  • String

switch 是严格比较, String 实例和 字符串不一样.

var s_prim = &#39;foo&#39;;
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 &#39;A&#39;:
        console.log(&#39;Case A&#39;);
        break;
    case &#39;B&#39;:
        console.log(&#39;Case B&#39;);
        break;
    case undefined:
        console.log(&#39;undefined&#39;);
        break;
    default:
        console.log(&#39;Do not know!&#39;);
    }
}
showCase2(String(&#39;A&#39;));

解释:

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, &#39;13&#39;, -9, Infinity];
values.map(isSane);

一个知识点

  • Arithmetic_Operators#Remainder

此题等价于

7 % 2 => 1
4 % 2 => 0
&#39;13&#39; % 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题

&#39;5&#39; + 3
&#39;5&#39; - 3

两个知识点:

  • Arithmetic_Operators#Addition

  • Arithmetic_Operators#Subtraction

+ 用来表示两个数的和或者字符串拼接, -表示两数之差.

请看例子, 体会区别:

> &#39;5&#39; + 3
&#39;53&#39;
> 5 + &#39;3&#39;
&#39;53&#39;
> 5 - &#39;3&#39;
2
> &#39;5&#39; - 3
2
> &#39;5&#39; - &#39;3&#39;
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 &#39;1&#39;; });

稀疏数组. 同第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(&#39; this is null or not defined&#39;);
        }

        var O = Object(this);
        var len = O.length >>> 0;
        if (typeof callback !== &#39;function&#39;) {
            throw new TypeError(callback + &#39; is not a function&#39;);
        }
        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

true

第23题

[1 < 2 < 3, 3 < 2 < 1]

这个题也还可以.

这个题会让人误以为是 2 > 1 && 2  其实不是的.

这个题等价于

 1 < 2 => true;
 true < 3 =>  1 < 3 => true;
 3 < 2 => false;
 false < 1 => 0 < 1 => true;

答案是 [true, true]

第24题

// the most classic wtf
2 == [[[2]]]

这个题我是猜的. 我猜的 true, 至于为什么…..

both objects get converted to strings and in both cases the resulting string is "2" 我不能信服…

第25题

3.toString()
3..toString()
3...toString()

这个题也挺逗, 我做对了 자바스크립트 비정상 질문 44개 분석 상세 소개  答案是 error, '3', error

你如果换一个写法就更费解了

var a = 3;
a.toString()

这个答案就是 '3';

为啥呢?

因为在 js 中 1.11..1 都是合法的数字. 那么在解析 3.toString 的时候这个 . 到底是属于这个数字还是函数调用呢? 只能是数字, 因为3.合法啊!

第26题

(function(){
  var x = y = 1;
})();
console.log(y);
console.log(x);

答案是 1, error

y 被赋值到全局. x 是局部变量. 所以打印 x 的时候会报 ReferenceError

第27题

var a = /123/,
    b = /123/;
a == b
a === b

即使正则的字面量一致, 他们也不相等.

答案 false, false

第28题

var a = [1, 2, 3],
    b = [1, 2, 3],
    c = [1, 2, 4]
a ==  b
a === b
a >   c
a <   c

字面量相等的数组也不相等.

数组在比较大小的时候按照字典序比较

答案 false, false, false, true

第29题

var a = {}, b = Object.prototype;
[a.prototype === b, Object.getPrototypeOf(a) === b]

知识点:

  • Object/getPrototypeOf

只有 Function 拥有一个 prototype 的属性. 所以 a.prototype 为 undefined.

而 Object.getPrototypeOf(obj) 返回一个具体对象的原型(该对象的内部[[prototype]]值)

答案 false, true

第30题

function f() {}
var a = f.prototype, b = Object.getPrototypeOf(f);
a === b

f.prototype is the object that will become the parent of any objects created with new f while Object.getPrototypeOf returns the parent in the inheritance hierarchy.

f.prototype 是使用使用 new 创建的 f 实例的原型. 而 Object.getPrototypeOf 是 f 函数的原型.

请看:

a === Object.getPrototypeOf(new f()) // true
b === Function.prototype // true

答案 false

第31题

function foo() { }
var oldName = foo.name;
foo.name = "bar";
[oldName, foo.name]

答案 ['foo', 'foo']

知识点:

  • Function/name

因为函数的名字不可变.

第32题

"1 2 3".replace(/\d/g, parseInt)

知识点:

  • String/replace#Specifying_a_function_as_a_parameter

str.replace(regexp|substr, newSubStr|function)

如果replace函数传入的第二个参数是函数, 那么这个函数将接受如下参数

  • match 首先是匹配的字符串

  • p1, p2 …. 然后是正则的分组

  • offset match 匹配的index

  • string 整个字符串

由于题目中的正则没有分组, 所以等价于问

parseInt(&#39;1&#39;, 0)
parseInt(&#39;2&#39;, 2)
parseInt(&#39;3&#39;, 4)

答案: 1, NaN, 3

第33题

function f() {}
var parent = Object.getPrototypeOf(f);
f.name // ?
parent.name // ?
typeof eval(f.name) // ?
typeof eval(parent.name) //  ?

先说以下答案 'f', 'Empty', 'function', error 这个答案并不重要…..

这里第一小问和第三小问很简单不解释了.

第二小问笔者在自己的浏览器测试的时候是 '', 第四问是 'undefined'

所以应该是平台相关的. 这里明白 parent === Function.prototype 就好了.

第34题

var lowerCaseOnly =  /^[a-z]+$/;
[lowerCaseOnly.test(null), lowerCaseOnly.test()]

知识点:

  • RegExp/test

这里 test 函数会将参数转为字符串. 'nul''undefined' 自然都是全小写了

答案: true, true

第35题

[,,,].join(", ")

[,,,] => [undefined × 3]

因为javascript 在定义数组的时候允许最后一个元素后跟一个,, 所以这是个长度为三的稀疏数组(这是长度为三, 并没有 0, 1, 2三个属性哦)

答案: ", , "

第36题

var a = {class: "Animal", name: &#39;Fido&#39;};
a.class

这个题比较流氓.. 因为是浏览器相关, class是个保留字(现在是个关键字了)

所以答案不重要, 重要的是自己在取属性名称的时候尽量避免保留字. 如果使用的话请加引号 a['class']

第37题

var a = new Date("epoch")

知识点:

  • Date

  • Date/parse

简单来说, 如果调用 Date 的构造函数传入一个字符串的话需要符合规范, 即满足 Date.parse 的条件.

另外需要注意的是 如果格式错误 构造函数返回的仍是一个Date 的实例 Invalid Date.

答案 Invalid Date

第38题

var a = Function.length,
    b = new Function().length
a === b

我们知道一个function(Function 的实例)的 length 属性就是函数签名的参数个数, 所以 b.length == 0.

另外 Function.length 定义为1……

所以不相等…….答案 false

第39题

var a = Date(0);
var b = new Date(0);
var c = new Date();
[a === b, b === c, a === c]

还是关于Date 的题, 需要注意的是

  • 如果不传参数等价于当前时间.

  • 如果是函数调用 返回一个字符串.

答案 false, false, false

第40题

var min = Math.min(), max = Math.max()
min < max

知识点:

  • Math/min

  • Math/max

有趣的是, Math.min 不传参数返回 Infinity, Math.max 不传参数返回 -Infinity

答案: false

第41题

function captureOne(re, str) {
  var match = re.exec(str);
  return match && match[1];
}
var numRe  = /num=(\d+)/ig,
    wordRe = /word=(\w+)/i,
    a1 = captureOne(numRe,  "num=1"),
    a2 = captureOne(wordRe, "word=1"),
    a3 = captureOne(numRe,  "NUM=2"),
    a4 = captureOne(wordRe,  "WORD=2");
[a1 === a2, a3 === a4]

知识点:

  • RegExp/exec

通俗的讲

因为第一个正则有一个 g 选项 它会‘记忆’他所匹配的内容, 等匹配后他会从上次匹配的索引继续, 而第二个正则不会

举个例子

var myRe = /ab*/g;
var str = &#39;abbcdefabh&#39;;
var myArray;
while ((myArray = myRe.exec(str)) !== null) {
  var msg = &#39;Found &#39; + myArray[0] + &#39;. &#39;;
  msg += &#39;Next match starts at &#39; + myRe.lastIndex;
  console.log(msg);
}
// Found abb. Next match starts at 3
// Found ab. Next match starts at 9

所以 a1 = ’1′; a2 = ’1′; a3 = null; a4 = ’2′

答案 [true, false]

第42题

var a = new Date("2014-03-19"),
    b = new Date(2014, 03, 19);
[a.getDay() === b.getDay(), a.getMonth() === b.getMonth()]

这个….

JavaScript inherits 40 years old design from C: days are 1-indexed in C’s struct tm, but months are 0 indexed. In addition to that, getDay returns the 0-indexed day of the week, to get the 1-indexed day of the month you have to use getDate, which doesn’t return a Date object.

a.getDay()
3
b.getDay()
6
a.getMonth()
2
b.getMonth()
3

都是套路!

答案 [false, false]

第43题

if (&#39;http://giftwrapped.com/picture.jpg&#39;.match(&#39;.gif&#39;)) {
  &#39;a gif file&#39;
} else {
  &#39;not a gif file&#39;
}

知识点:

  • String/match

String.prototype.match 接受一个正则, 如果不是, 按照 new RegExp(obj) 转化. 所以 . 并不会转义
那么 /gif 就匹配了 /.gif/

答案: 'a gif file'

第44题

function foo(a) {
    var a;
    return a;
}
function bar(a) {
    var a = &#39;bye&#39;;
    return a;
}
[foo(&#39;hello&#39;), bar(&#39;hello&#39;)]

在两个函数里, a作为参数其实已经声明了, 所以 var a; var a = 'bye' 其实就是 a; a ='bye'

所以答案 'hello', 'bye'

 以上就是详细介绍44 个 JavaScript 变态题解析的内容,更多相关内容请关注PHP中文网(www.php.cn)!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.