求职面试并非完全可以预测,但我们仍然经常看到常见的棘手问题。让我们看看其中的10个,经常出现在面试中的。
const user = {
name: "Shoaib",
info: {
father: "Ali",
age: 26,
email: "shoaib.mehedi@gmail.com"
},
};
const copy = { ...user };
copy.info.father = "MD";
console.log("original: ", user.info);
console.log("copy:", copy.info);
original: {
father: ‘MD’,
age: 26,
email: ‘shoaib.mehedi@gmail.com’
}
copy: {
father: ‘MD’,
age: 26,
email: ‘shoaib.mehedi@gmail.com’
}
Object.assign和传播操作符都进行浅表复制。 这意味着我们复制了第一级对象。
我们之前使用的代码可以这样写Object.assign:
const user = {
name: "Shoaib",
info: {
father: "Ali",
age: 26,
email: "shoaib.mehedi@gmail.com"
},
};
const copy = Object.assign({}, user);
copy.info.father = "MD";
console.log("original: ", user.info);
console.log("copy:", copy.info);
预测以下代码的输出:
var name = "shoaib";
var age = 26
var info = function () {
console.log(name);
console.log(age);
var name = 20;
};
info();
undefined
26
代码段的输出不是shoaib和20,结果为undefined和26,这是由于JavaScript中的吊装而导致的。
我们再将上面的代码转换一下,如下:
var name = "shoaib";
var age = 26
var info = function () {
var name;
console.log(name);
console.log(age);
name = 20;
};
info();
function assign() {
var numOne = numTwo = 10;
}
assign();
console.log('numTwo', typeof numTwo === 'undefined');
console.log('numOne', typeof numOne === 'undefined');
numTwo false
numOne true
同样,我们可以这样写:
function assign() {
var numOne= (numTwo = 10);
}
赋值运算符具有从右到左的关联性,这意味着它将从右到左进行求值。这就是为什么numTwo要为其分配值10,然后将其分配给numOne的原因。
var obj = {
name: "shoaib",
func: function() {
var self = this;
console.log("outer function: this.name = " + this.name);
console.log("outer function: self.name = " + self.name);
(function() {
console.log("inner function: this.name = " + this.name);
console.log("inner function: self.name = " + self.name);
}());
}
};
obj.func();
outer function: this.name = shoaib
outer function: self.name = shoaib
inner function: this.name = undefined
inner function: self.name = shoaib
外部函数this和self引用obj,因此都可以正确访问该名称。但是内部部分不同。
在这里,this不参考obj。这就是为什么this.name是undefined。但是对局部变量的引用self仍在范围内,并且具有适当的访问权限。
function funcOne() {
return {
name: "shoaib",
};
}
function funcTwo() {
return;
{
name: "shoaib";
}
}
console.log(funcOne());
console.log(funcTwo());
{
name: 'shoaib'
}
undefined
此处,funcOne成功返回对象,但问题出在funcTwo。仔细看看:funcTwo后面有分号return。这意味着由于分号,这将不会返回任何内容。
console.log(0.1 + 0.2);
console.log(0.1 + 0.2 == 0.3);
0.30000000000000004
false
为什么?
这是复杂的。 结果可能是0.3且为true,但有可能不是。 在JavaScript中,数字均以浮点精度处理,因此可能不会总是产生预期的结果。
解决办法是什么?
JavaScript为此引入了Math.abs。 这将帮助你比较两个数字之间的绝对差。
function almostEqual(numOne, numTwo) {
return Math.abs( numOne - numTwo ) < Number.EPSILON;
}
console.log(almostEqual(0.1 + 0.2, 0.3));
(function() {
console.log(1);
setTimeout(function(){console.log(2)}, 1000);
setTimeout(function(){console.log(3)}, 0);
console.log(4);
})();
1
4
3
2
为什么?
var arrayOne = "shoaib".split('');
var arrayTwo = arrayOne.reverse();
var arrayThree = "mehedi".split('');
arrayTwo.push(arrayThree);
console.log("arrayOne length=" + arrayOne.length + " value=" + arrayOne.slice(-1));
console.log("arrayTwo length=" + arrayTwo.length + " value=" + arrayTwo.slice(-1));
arrayOne length = 7 value = m,e,h,e,d,i
arrayTwo length = 7 value = m,e,h,e,d,i
为什么?
为了更好地理解,下面是一个示例:
const array1 = ['one', 'two', 'three'];
console.log('array1:', array1);
// expected output: "array1:" Array ["one", "two", "three"]
const reversed = array1.reverse();
console.log('reversed:', reversed);
// expected output: "reversed:" Array ["three", "two", "one"]
// Careful: reverse is destructive -- it changes the original array.
console.log('array1:', array1);
// expected output: "array1:" Array ["three", "two", "one"]
console.log(false == '0')
console.log(false === '0')
true
false
为什么?
在JavaScript中,==在两件事之间进行比较,这并不严格。 如果要严格比较,则可以使用===而不是==进行比较,这将比较两件事及其数据类型。 同样,!=和!==运算符也可以这样工作。
var person = {
name: 'shoaib',
identity: function (){
return this.name;
}
};
var personCopy = person.identity;
console.log(personCopy());
console.log(person.identity());
undefined
shoaib
为什么?
第一个控制台是未定义的,因为该方法是从person对象中提取的,因此在不存在name属性的全局上下文中调用了identity函数。
在本文中,我试图涵盖一些程序员应理解的棘手问题,以便在面试中做得更好。将来我会尝试包括更多内容。如果我错过了任何有趣的内容,请在下面进行评论。
感谢你的阅读。
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8