溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

有哪些JS技巧

發(fā)布時(shí)間:2021-10-21 16:43:48 來源:億速云 閱讀:121 作者:iii 欄目:web開發(fā)

這篇文章主要講解了“有哪些JS技巧”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“有哪些JS技巧”吧!

 1.三元運(yùn)算符

新手

let hungry = true; let eat;  if (hungry == true) {        eat = 'yes';  } else {        eat = 'no'; }

老手

let hungry = true; let eat = hungry == true ? 'yes' : 'no';

2.數(shù)字轉(zhuǎn)字符串/字符串轉(zhuǎn)數(shù)字

新手

let num = 15;  let s = num.toString(); // number to string let n = Number(s); // string to number

老手

let num = 15; let s = num + ""; // 數(shù)字轉(zhuǎn)字符串 let n = +s; // 字符串轉(zhuǎn)數(shù)字

3.填充數(shù)組

新手

for(let i=0; i < arraySize; i++){   filledArray[i] {'hello' : 'goodbye'}; }

老手

let filledArray = new Array(arraysize).fill(null).map(()=> ({'hello' : 'goodbye'}));

4.對(duì)象的動(dòng)態(tài)屬性

新手

let dynamic = "value";  let user = {      id: 1, }; user[dynamic] = "other value";

老手

let dynamic = "value";  let user = {     id: 1,     [dynamic] = "other value" };

5.刪除重復(fù)項(xiàng)

新手

let array = [100, 23, 23, 23, 23, 67, 45];  let outputArray = []; let flag = false;  for (j = 0; < array.length; j++) {    for (k = 0; k < outputArray.length; k++) {       if (array[j] == outputArray[k]) {          flag = true;        }     }     if (flag == false) {       outputArray.push(array[j]);      }      flag = false; } // tArray = [100, 23, 67, 45]

老手

let array = [100, 23, 23, 23, 23, 67, 45];  let outputArray = Array.from(new Set(array))

6. 數(shù)組到對(duì)象

新手

et arr = ["value1", "value2", "value3"];  let arrObject = {};  for (let i = 0; i < arr.length; ++i) {  if (arr[i] !== undefined) {  arrObject[i] = arr[i];  }  }

老手

let arr = ["value1", "value2", "value3"];  let arrObject = {...arr};

7.對(duì)象到數(shù)組

新手

let number = {   one: 1,    two: 2, }; let keys = [];  for (let numbers in numbers) {   if (number.hasOwnProperty(number)) {      keys.push(number);     } } // key = [ 'one', 'two' ]

老手

let number = {   one: 1,    two: 2, }; let key = Object.keys(numbers); // key = [ 'one', 'two' ] let value = Object.values(numbers);  // value = [ 1, 2 ] let entry = Object.entries(numbers); // entry = [['one' : 1], ['two' : 2]]

8. 短路條件

新手

if (docs) {     goToDocs(); }

老手

docs && goToDocs()

9. 使用^檢查數(shù)字是否相等

if(a!=123) // before // 一般開發(fā)者  if(a^123) // after // B格比較高的

10.對(duì)象遍歷

const age = {    Rahul: 20,      max: 16 };  // 方案1:先得 key 在便利 key const keys = Object.keys(age);  keys.forEach(key => age[key]++);  console.log(age); // { Rahul: 21, max: 16 }  // 方案2 - `for...in` 循環(huán) for(let key in age){    age[key]++; }  console.log(age); // { Rahul: 22, max: 18 }

11. 獲取對(duì)象的所有鍵

cosnt obj = {   name: "前端小智",    age: 16,    address: "廈門",    profession: "前端開發(fā)",  };   console.log(Object.keys(obj)); // name, age, address, profession

12.檢查值是否為數(shù)組

const arr = [1, 2, 3];  console.log(typeof arr); // object console.log(Array.isArray(arr)); // true

13.初始化大小為n的數(shù)組并填充默認(rèn)值

const size = 5; const defaultValue = 0; const arr = Array(size).fill(defaultValue); console.log(arr); // [0, 0, 0, 0, 0]

14. 真值和虛值

虛值:false,0, "",null,undefined和NaN。

真值:"Values",0",{},[]。

15. 三等號(hào)和雙等號(hào)的區(qū)別

// 雙等號(hào) - 將兩個(gè)操作數(shù)轉(zhuǎn)換為相同類型,再比較 console.log(0 == 'o'); // true  // 三等號(hào) - 不轉(zhuǎn)換為相同類型 console.log(0 === '0'); // false

16. 接收參數(shù)更好的方式

function downloadData(url, resourceId, searchTest, pageNo, limit) {}  downloadData(...); // need to remember the order

更簡單的方法

function downloadData(  { url, resourceId, searchTest, pageNo, limit } = {}  ) {}  downloadData(  { resourceId: 2, url: "/posts", searchText: "WebDev" }  );

17.null vs undefined

null =>它是一個(gè)值,而undefined不是。

const fn = (x = 'default value') => console.log(x);  fn(undefined); // default value fn(); // default value  fn(null); // null

傳遞null時(shí),不采用默認(rèn)值,而 undefined或未傳遞任何內(nèi)容時(shí),將采用默認(rèn)值。

感謝各位的閱讀,以上就是“有哪些JS技巧”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)有哪些JS技巧這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI