当前位置:首页 > 科技  > 软件

面试官:JavaScript中“x !== x”可以返回True吗?

来源: 责编: 时间:2023-08-14 22:01:18 232观看
导读在面试的过程中,你有被问一些奇怪面试题的经历吗?这些面试题与常规问题不同:这些面试问题看起来很简单,但却考验你对 JavaScript 的透彻理解,今天我将它们整理出来,看看你是否都能回答出来。1.“x !== x”可以返回true吗?

在面试的过程中,你有被问一些奇怪面试题的经历吗?这些面试题与常规问题不同:这些面试问题看起来很简单,但却考验你对 JavaScript 的透彻理解,今天我将它们整理出来,看看你是否都能回答出来。uJ528资讯网——每日最新资讯28at.com

uJ528资讯网——每日最新资讯28at.com

1.“x !== x”可以返回true吗?

要输出“hello fatfish”,“x”的值应该是多少?uJ528资讯网——每日最新资讯28at.com

const x = ? // Please fill in the value of "x?if (x !== x) {  console.log('hello fatfish')}

太奇妙了。是否存在不等于自身的值?然而,JavaScript 中有一个值 NaN,它不等于任何值,甚至不等于它本身。uJ528资讯网——每日最新资讯28at.com

const x = NaN // Please fill in the value of "x?if (x !== x) {  console.log('hello fatfish')}console.log(NaN === NaN) // falseconsole.log(x !== x) // trueconsole.log(Number.isNaN(x)) // true

2. (!isNaN(x) && x !== x) 可以返回 true 吗?

好吧,当我们过滤掉“NaN”时,还有什么其他值可以使一个值不等于它自己呢?uJ528资讯网——每日最新资讯28at.com

const x = ? // Please fill in the value of "x?if(!isNaN(x) && x !== x) {  console.log('hello fatfish')}

也许你知道“对象”,Defineproperty”,可以帮助我们解决这个问题。uJ528资讯网——每日最新资讯28at.com

window.x = 0 // Any value is OKObject.defineProperty(window, 'x', {  get () {    return Math.random()  }})console.log(x) // 0.12259077808826002console.log(x === x) // falseconsole.log(x !== x) // true

3. 如何使“x === x + 1”?

这个问题可能并不容易,但只要你了解 JavaScript,你就会知道“Number.MAX_SAFE_INTEGER 常量代表 JavaScript 中的最大安全整数 (²⁵³ — 1)”。uJ528资讯网——每日最新资讯28at.com

const x = ? // Please fill in the value of "x?if (x === x + 1) {  console.log('hello fatfish')}

因此我们可以为“x”分配任何大于“Number.MAX_SAFE_INTEGER”的值。uJ528资讯网——每日最新资讯28at.com

const x =  Number.MAX_SAFE_INTEGER + 1// Please fill in the value of "x?if (x === x + 1) {  console.log('hello fatfish')}

4.“x > x”可以为true吗?

我不想再看书了,这是什么垃圾问题?uJ528资讯网——每日最新资讯28at.com

const x = ? // Please fill in the value of "x?if (x > x) {  console.log('hello fatfish')}

虽然看起来不太可能,但一个值怎么可能比它本身更大呢?但是,我们可以使用“Symbol.toPrimitive”功能来完成该问题。uJ528资讯网——每日最新资讯28at.com

const x = { // Please fill in the value of "x?  value: 1,  [ Symbol.toPrimitive ] () {    console.log('x', this.value)    return --this.value  }}if (x > x) {  console.log('hello fatfish')}

哇,太神奇了!uJ528资讯网——每日最新资讯28at.com

5. typeof x === ‘undefined’ && x.length > 0 ?

const x = ? // Please fill in the value of "x?if(typeof x === 'undefined' && x.length > 0) {  console.log('hello fatfish')}

我不得不承认 JavaScript 是一门令人惊叹的语言。除了 undefined 本身之外,还有什么其他值可以使 typeof x === undefined” 为 true?uJ528资讯网——每日最新资讯28at.com

答案是文档。All 一个 HTMLAllCollection,包含文档中的每个元素(来自 MDN)。uJ528资讯网——每日最新资讯28at.com

const x = document.all // Please fill in the value of "x?if(typeof x === 'undefined' && x.length > 0) {  console.log('hello fatfish')}console.log(x)console.log(typeof x)console.log(x === undefined)

最后

以上就是我跟你分享的全部内容,希望对你有用,最后,感谢你的阅读,并期待你的关注,阅读更多文章内容。uJ528资讯网——每日最新资讯28at.com

本文链接:http://www.28at.com/showinfo-26-5726-0.html面试官:JavaScript中“x !== x”可以返回True吗?

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。邮件:2376512515@qq.com

上一篇: JavaScript 中有趣的九个常用编码套路

下一篇: 破解代码:每个Web开发者都应该知道的七个秘密

标签:
  • 热门焦点
Top