search
HomeWeb Front-endJS Tutorial5 classic JavaScript interview questions_javascript skills

1: Scope

Copy code The code is as follows:

(function() {
var a = b = 5;
})();
console.log(b);

What will be printed to the console?

Answer

The above code will print 5.

The trick to this problem is that there are two variable declarations, but a is declared using the keyword var. Indicates that it is a local variable of a function. In contrast, b becomes a global variable.

Another trick with this question is that it doesn’t use strict mode (‘use strict’;). If strict mode is enabled, the code will raise a ReferenceError: b is not defined. Remember that strict mode requires explicit specification in order to implement global variable declarations. For example, you should write:

Copy code The code is as follows:

(function() {
'use strict';
var a = window.b = 5;
})();

console.log(b);

2: Create a "native" method

Define a repeatify function for the string object. When passed in an integer n, it returns the result of repeating the string n times. For example:

Copy code The code is as follows:

console.log('hello'.repeatify(3));

should print hellohellohello.

Answer

A possible implementation looks like this:

Copy code The code is as follows:

String.prototype.repeatify = String.prototype.repeatify || function(times) {
var str = '';
for (var i = 0; i        str = this;
}
Return str;
};

The current questions test developers’ knowledge about JavaScript inheritance and prototypes. This also verifies that the developer knows how to extend built-in objects (even though this should not be done).

Another important point here is that you need to know how not to override functionality that may already be defined. Test that the function definition did not exist before:

Copy code The code is as follows:

String.prototype.repeatify = String.prototype.repeatify || function(times) {/* code here */};

This technique is especially useful when you are asked to make JavaScript functions compatible.

3: Statement Hoisting

Execute this code and what results will be output.

Copy code The code is as follows:

function test() {
console.log(a);
console.log(foo());
var a = 1;
Function foo() {
Return 2;
}
}

10: test();

Answer

The result of this code is undefined and 2.

The reason is that the declarations of variables and functions are brought forward (moved to the top of the function), but the variables are not assigned any values. So, when printing the variable, it exists in the function (it was declared), but it is still undefined. In other words, the above code is equivalent to the following:

Copy code The code is as follows:

function test() {
var a;
Function foo() {
Return 2;
}

console.log(a);
console.log(foo());

a = 1;
}

test();

4: How this works in JavaScript

What will the following code output? Give your answer.

Copy code The code is as follows:

var fullname = 'John Doe';
var obj = {
Fullname: 'Colin Ihrig',
; prop: {
        fullname: 'Aurelio De Rosa',
        getFullname: function() {
            return this.fullname;
}
}
};

console.log(obj.prop.getFullname());

var test = obj.prop.getFullname;

console.log(test());

Answer

The answer is Aurelio De Rosa and John Doe. The reason is that in a function, the behavior of this depends on how the JavaScript function is called and defined, not just how it is defined.

In the first console.log() call, getFullname() is called as a function of the obj.prop object. Therefore, the context refers to the latter and the function returns the fullname of the object. In contrast, when getFullname() is assigned to the test variable, the context refers to the global object (window). This is because test is implicitly set as a property of the global object. For this reason, the function returns the fullname of the window, which is the value defined on the first line.

5: call() and apply()

Now let's solve the previous problem so that the final console.log() prints Aurelio De Rosa.

Answer

This problem can be changed by forcing the use of call() or apply() to change the function context. Below I'll use call(), but in this case apply() will output the same result:

Copy code The code is as follows:

console.log(test.call(obj.prop));
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!