掃二維碼與項目經(jīng)理溝通
我們在微信上24小時期待你的聲音
解答本文疑問/技術(shù)咨詢/運營咨詢/技術(shù)建議/互聯(lián)網(wǎng)交流
每個 JS 開發(fā)人員都應(yīng)該使用 javascript one liner 來提高生產(chǎn)力和技能,所以今天我們討論一些可以在日常開發(fā)生活中使用的 one liner。

使用 sort 方法對數(shù)組進行排序非常簡單。
const number = [2,6,3,7,8,4,0];number.sort();// expected output: [0,2,3,4,6,7,8]
很多時候我們需要檢查值是否存在于數(shù)組中,借助 include 方法。
const array1 = [1, 2, 3];console.log(array1.includes(2));// expected output: true
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];const result = words.filter(word word.length > 6);console.log(result);
// expected output: Array ["exuberant", "destruction", "present"]
如果你只需要一個元素,但你在數(shù)組中獲得了很多元素,不要擔心 JavaScript 有 find 方法。
const array1 = [5, 12, 8, 130, 44];const found = array1.find(element element > 10);console.log(found);// expected output: 12
要查找數(shù)組中元素的索引,您可以簡單地使用 indexOf 方法。
const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'];console.log(beasts.indexOf('bison'));// expected output: 1
const elements = ['Fire', 'Air', 'Water'];console.log(elements.join(", "));// expected output: "Fire, Air, Water"
很容易找出給定的數(shù)字是偶數(shù)還是奇數(shù)。
const isEven = num num % 2 === 0;orconst isEven = num !(n & 1);
刪除數(shù)組中所有重復(fù)值的一種非常簡單的方法
const setArray = arr [...new Set(arr)];const arr = [1,2,3,4,5,1,3,4,5,2,6];setArray(arr);// expected output: [1,2,3,4,5,6]
// merge but don't remove duplicationsconst merge = (a, b) =>orconst merge = (a, b) => [...a, ...b];// merge with remove duplicationsconst merge = (a, b) => [...new Set(a.concat(b))];orconst merge = (a, b) => [...new Set([...a, ...b])];
有很多方法可以將頁面滾動到頂部。
const goToTop = () window.scrollTo(0,0, "smooth");orconst scrollToTop = (element) => element.scrollIntoView({behavior: "smooth", block: "start"});// scroll to bottom of the pageconst scrollToBottom = () window.scrollTo(0, document.body.scrollHeight);
在 Web 應(yīng)用程序中,復(fù)制到剪貼板因其對用戶的便利性而迅速普及。
const copyToClipboard = text (navigator.clipboard?.writeText ?? Promise.reject)(text);
以上就是我今天跟你分享的11個JavaScript的單行代碼技巧,希望你能從中學到新的知識。

我們在微信上24小時期待你的聲音
解答本文疑問/技術(shù)咨詢/運營咨詢/技術(shù)建議/互聯(lián)網(wǎng)交流