日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

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

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
五個你可能不知道的神奇JavaScript知識點!

最近,我遇到了一些奇怪而有趣的面試題,它們與常規(guī)問題不同,這些面試問題看起來很簡單,但它們會測試你對 JavaScript 的透徹理解,今天我就來跟大家分享5個神奇的JavaScript知識點,看看你能答對幾個?

創(chuàng)新互聯(lián)專注于江源網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供江源營銷型網(wǎng)站建設(shè),江源網(wǎng)站制作、江源網(wǎng)頁設(shè)計、江源網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造江源網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供江源網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

現(xiàn)在,我們就馬上開始吧。

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 中有一個值 NaN,它不等于任何值,甚至不等于自身。

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

好的,當(dāng)我們過濾掉“NaN”時,還有什么值可以讓一個值不等于自己呢?

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

也許你知道“object.Defineproperty”,它可以幫助我們解決這個問題。

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 中的最大安全整數(shù) (2?3 — 1)?!保ㄟ@個解釋來自 MDN)

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

我不想再看了,這是什么垃圾問題?

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

雖然,看起來不太可能,但是一個值怎么可能大于它自己呢?但是,我們可以使用“Symbol.toPrimitive”功能來完成問題。

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

我不得不承認 JavaScript 是一門了不起的語言。除了 undefined 本身,還有什么值可以讓 typeof x === undefined” 為真呢?

答案是文檔。All 一個 HTMLAllCollection,它包含文檔中的每個元素(來自 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)

這些問題是不是很神奇?

寫在最后

以上就是我今天跟你分享的5個非常有趣而神奇的JavaScript的知識點。

如果你有任何問題,歡迎在留言區(qū)給我留言,如果你覺得有用或者有趣的話,請點贊我,關(guān)注我,并將它分享給你的開發(fā)者朋友,也許能夠幫助到他。

最后,感謝你的閱讀,編程愉快!


網(wǎng)頁題目:五個你可能不知道的神奇JavaScript知識點!
本文URL:http://www.dlmjj.cn/article/cceppce.html