日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
面試官:JavaScript中“x!==x”可以返回True嗎?

在面試的過(guò)程中,你有被問(wèn)一些奇怪面試題的經(jīng)歷嗎?這些面試題與常規(guī)問(wèn)題不同:這些面試問(wèn)題看起來(lái)很簡(jiǎn)單,但卻考驗(yàn)?zāi)銓?duì) JavaScript 的透徹理解,今天我將它們整理出來(lái),看看你是否都能回答出來(lái)。

創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作與策劃設(shè)計(jì),陽(yáng)谷網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:陽(yáng)谷等地區(qū)。陽(yáng)谷做網(wǎng)站價(jià)格咨詢:028-86922220

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

要輸出“hello fatfish”,“x”的值應(yīng)該是多少?

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

太奇妙了。是否存在不等于自身的值?然而,JavaScript 中有一個(gè)值 NaN,它不等于任何值,甚至不等于它本身。

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

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

好吧,當(dāng)我們過(guò)濾掉“NaN”時(shí),還有什么其他值可以使一個(gè)值不等于它自己呢?

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

也許你知道“對(duì)象”,Defineproperty”,可以幫助我們解決這個(gè)問(wèn)題。

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

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

這個(gè)問(wèn)題可能并不容易,但只要你了解 JavaScript,你就會(huì)知道“Number.MAX_SAFE_INTEGER 常量代表 JavaScript 中的最大安全整數(shù) (2?3 — 1)”。


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

因此我們可以為“x”分配任何大于“Number.MAX_SAFE_INTEGER”的值。

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嗎?

我不想再看書(shū)了,這是什么垃圾問(wèn)題?

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

雖然看起來(lái)不太可能,但一個(gè)值怎么可能比它本身更大呢?但是,我們可以使用“Symbol.toPrimitive”功能來(lái)完成該問(wèn)題。

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')
}

哇,太神奇了!

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')
}

我不得不承認(rèn) JavaScript 是一門令人驚嘆的語(yǔ)言。除了 undefined 本身之外,還有什么其他值可以使 typeof x === undefined” 為 true?

答案是文檔。All 一個(gè) HTMLAllCollection,包含文檔中的每個(gè)元素(來(lái)自 MDN)。

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)

最后

以上就是我跟你分享的全部?jī)?nèi)容,希望對(duì)你有用,最后,感謝你的閱讀,并期待你的關(guān)注,閱讀更多文章內(nèi)容。


分享標(biāo)題:面試官:JavaScript中“x!==x”可以返回True嗎?
瀏覽路徑:http://www.5511xx.com/article/djeidsp.html