


Detailed analysis of code examples for 14 tough JavaScript interview questions
Front-end engineers sometimes encounter a type of interviewer during interviews. The questions they ask are very realistic about the language itself and are often not the practical questions that candidates may expect (some candidates emphasize that As long as you can work, it's irrelevant whether you know the reason or not). Although this type of question has no logic, to a certain extent, it does test the candidate's understanding of the javascript
language.
I suddenly thought of this topic because I was looking through my Github out of boredom to see what ugly things I had written before. Then I came across this article quiz-legend that explains the Javascript quiz. Anyway, it’s okay, so I wanted to move it here for everyone to learn, understand, recite, and criticize.
Question 1
(function(){ return typeof arguments;//"object" })();
arguments
is an Array-like object, corresponding to the parameter list passed into the function. You can use this variable directly in any function. The
typeof
operator will only return results of type string
. Refer to the following list to know what the values returned by typeof
are for different data:
Type | Result |
---|---|
undefined | 'undefined' |
null | 'object' |
Boolean | 'boolean' |
Number | 'number' |
String | 'string' |
Symbol (new in ECMAScript 2015) | ' symbol' |
Host object (provided by the JS environment) | Implementation-dependent |
Function object ( implements [[Call]] in ECMA-262 terms) | 'function' |
Any other object | 'object' |
由此我们推断出,
typeof arguments
是object
问题二
var f = function g(){ return 23; }; typeof g();//报错
这是一个名字是g
的function expression,然后又被赋值给了变量f
。
这里的函数名g
和被其赋值的变量f
有如下差异:
函数名
g
不能变动,而变量f
可以被重新赋值函数名
g
只能在函数体内部被使用,试图在函数外部使用g
会报错的
问题三
(function(x){ delete x; return x;//1 })(1);
delete
操作符可以从对象中删除属性,正确用法如下:
delete object.property delete object['property']
delete
操作符只能作用在对象的属性上,对变量和函数名无效。也就是说delete x
是没有意义的。
你最好也知道,
delete
是不会直接释放内存的,她只是间接的中断对象引用
问题四
var y = 1, x = y = typeof x; x;//"undefined"
我们试图分解上述代码成下面两步:
var y = 1; //step 1 var x = y = typeof x; //step 2
第一步应该没有异议,我们直接看第二步
赋值表达式从右向左执行
y
被重新赋值为typeof x
的结果,也就是undefined
x
被赋值为右边表达式(y = typeof x
)的结果,也就是undefined
问题五
(function f(f){ return typeof f();//"number" })(function(){ return 1; });
直接上注释解释:
(function f(f){ //这里的f是传入的参数function(){ return 1; } //执行的结果自然是1 return typeof f(); //所以根据问题一的表格我们知道,typeof 1结果是"number" })(function(){ return 1; });
问题六
var foo = { bar: function() { return this.baz; }, baz: 1 }; (function(){ return typeof arguments[0]();//"undefined" })(foo.bar);
这里你可能会误以为最终结果是number
。向函数中传递参数可以看作是一种赋值,所以arguments[0]
得到是是真正的bar
函数的值,而不是foo.bar
这个引用,那么自然this
也就不会指向foo
,而是window
了。
问题七
var foo = { bar: function(){ return this.baz; }, baz: 1 } typeof (f = foo.bar)();//"undefined"
这和上一题是一样的问题,(f = foo.bar)
返回的就是bar
的值,而不是其引用,那么this
也就指的不是foo
了。
问题八
var f = (function f(){ return '1'; }, function g(){ return 2; })(); typeof f;//"number"
逗号操作符 对它的每个操作对象求值(从左至右),然后返回最后一个操作对象的值
所以(function f(){ return '1'; }, function g(){ return 2; })
的返回值就是函数g
,然后执行她,那么结果是2
;最后再typeof 2
,根据问题一的表格,结果自然是number
问题九
var x = 1; if (function f(){}) { x += typeof f; } x;//"1undefined"
这个问题的关键点,我们在问题二中谈到过,function expression
中的函数名f
是不能在函数体外部访问的
问题十
var x = [typeof x, typeof y][1]; typeof typeof x;//"string"
因为没有声明过变量
y
,所以typeof y
返回"undefined"
将
typeof y
的结果赋值给x
,也就是说x
现在是"undefined"
然后
typeof x
当然是"string"
最后
typeof "string"
的结果自然还是"string"
问题十一
(function(foo){ return typeof foo.bar;//"undefined" })({ foo: { bar: 1 } });
这是个纯粹的视觉诡计,上注释
(function(foo){ //这里的foo,是{ foo: { bar: 1 } },并没有bar属性哦。 //bar属性是在foo.foo下面 //所以这里结果是"undefined" return typeof foo.bar; })({ foo: { bar: 1 } });
问题十二
(function f(){ function f(){ return 1; } return f();//2 function f(){ return 2; } })();
通过function declaration
声明的函数甚至可以在声明之前使用,这种特性我们称之为hoisting。于是上述代码其实是这样被运行环境解释的:
(function f(){ function f(){ return 1; } function f(){ return 2; } return f(); })();
问题十三
function f(){ return f; } new f() instanceof f;//false
当代码new f()
执行时,下面事情将会发生:
一个新对象被创建。它继承自
f.prototype
构造函数
f
被执行。执行的时候,相应的传参会被传入,同时上下文(this
)会被指定为这个新实例。new f
等同于new f()
,只能用在不传递任何参数的情况。如果构造函数返回了一个“对象”,那么这个对象会取代整个
new
出来的结果。如果构造函数没有返回对象,那么new
出来的结果为步骤1创建的对象,
ps:一般情况下构造函数不返回任何值,不过用户如果想覆盖这个返回值,可以自己选择返回一个普通对象来覆盖。当然,返回数组也会覆盖,因为数组也是对象。
于是,我们这里的new f()
返回的仍然是函数f
本身,而并非他的实例
问题十四
with (function(x, undefined){}) length;//2
with
语句将某个对象添加的作用域链的顶部,如果在statement
中有某個未使用命名空间的变量,跟作用域链中的某個属性同名,則這個变量将指向這個属性值。如果沒有同名的属性,则将拋出ReferenceError
异常。
OK,现在我们来看,由于function(x, undefined){}
是一个匿名函数表达式,是函数,就会有length
属性,指的就是函数的参数个数。所以最终结果就是2
了
写在最后
有人觉得这些题坑爹,也有人觉得开阔了眼界,见仁见智吧。但有一件事是真的,无论你是否坚定的实践派,缺了理论基础,也铁定走不远 - 你永远不会见到哪个熟练的技术工人突然成了火箭专家。
看文档、读标准、结合实践,才是同志们的决胜之道。
以上就是关于14 个折磨人的 JavaScript 面试题的代码示例详细分析的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
