1. 程式人生 > 其它 >18 個殺手級 JavaScript 單行程式碼

18 個殺手級 JavaScript 單行程式碼

1、複製到剪貼簿

使用 navigator.clipboard.writeText 輕鬆將任何文字複製到剪貼簿。

const copyToClipboard = (text) => navigator.clipboard.writeText(text);
copyToClipboard("Hello World");

2、檢查日期是否有效

使用以下程式碼段檢查給定日期是否有效。

const isDateValid = (...val) => !Number.isNaN(new Date(...val).valueOf());
isDateValid("December 17, 1995 03:24:00");
// Result: true

3、找出一年中的哪一天

查詢給定日期的哪一天。

const dayOfYear = (date) =>  Math.floor((date - new Date(date.getFullYear(), 0, 0)) / 1000 / 60 / 60 / 24);
dayOfYear(new Date());
// Result: 272

4、將首字串大寫

Javascript 沒有內建的大寫函式,因此我們可以使用以下程式碼。

const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)capitalize("follow for more")//
Result: Follow for more

5、找出兩日期之間的天數

使用以下程式碼段查詢給定 2 個日期之間的天數。

const dayDif = (date1, date2) => Math.ceil(Math.abs(date1.getTime() - date2.getTime()) / 86400000)dayDif(new Date("2020-10-21"), new Date("2021-10-22"))// Result: 366

6、清除所有 Cookie

你可以通過使用 document.cookie 訪問 cookie 並清除它來輕鬆清除儲存在網頁中的所有 cookie。

const clearCookies = document.cookie.split(';').forEach(cookie => document.cookie = cookie.replace(/^ +/, '')
.replace(
/=.*/, `=;expires=${new Date(0).toUTCString()}; path=/`));

7、生成隨機十六進位制

你可以使用 Math.random 和 padEnd 屬性生成隨機十六進位制顏色。

const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`
console.log(randomHex());
//Result: #92b008

8、從陣列中刪除重複項

你可以使用 JavaScript 中的 Set 輕鬆刪除重複項。

const removeDuplicates = (arr) => [...new Set(arr)];
console.log(removeDuplicates([1, 2, 3, 3, 4, 4, 5, 5, 6]));
// Result: [ 1, 2, 3, 4, 5, 6 ]

9、從 URL 獲取查詢引數

你可以通過傳遞 window.location 或原始 URL goole.com?search=easy&page=3 從 url 輕鬆檢索查詢引數

const getParameters = (URL) => {
    URL = JSON.parse('{"' + decodeURI(URL.split("?")[1]).replace(/"/g, '\"').replace(/&/g, '","').replace(
    /=/g, '":"') + '"}');
    return JSON.stringify(URL);
};
getParameters(window.location) // Result: { search : "easy", page : 3 }

10、從日期記錄時間

我們可以從給定日期以小時::分鐘::秒的格式記錄時間。

const timeFromDate = date => date.toTimeString().slice(0, 8);
console.log(timeFromDate(new Date(2021, 0, 10, 17, 30, 0))); 
// Result: "17:30:00"

11、檢查數字是偶數還是奇數

const isEven = num => num % 2 === 0;console.log(isEven(2));
 // Result: True

12、求數字的平均值

使用 reduce 方法找到多個數字之間的平均值。

const average = (...args) => args.reduce((a, b) => a + b) / args.length;
average(1, 2, 3, 4);
// Result: 2.5

13、反轉字串

你可以使用 split、reverse 和 join 方法輕鬆反轉字串。

const reverse = str => str.split('').reverse().join('');reverse('hello world'); 
// Result: 'dlrow olleh'

14、檢查陣列是否為空

檢查陣列是否為空的簡單單行程式將返回 true 或 false。

const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0;
isNotEmpty([1, 2, 3]);
// Result: true

15、獲取選定的文字

使用內建的 getSelectionproperty 獲取使用者選擇的文字。

const getSelectedText = () => window.getSelection().toString();
getSelectedText();

16、打亂陣列

使用 sort 和 random 方法打亂陣列非常容易。

const shuffleArray = (arr) => arr.sort(() => 0.5 - Math.random());console.log(shuffleArray([1, 2, 3, 4]));// Result: [ 1, 4, 3, 2 ]

17、檢測暗模式

使用以下程式碼檢查使用者的裝置是否處於暗模式。

const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matchesconsole.log(isDarkMode) // Result: True or False

18、將 RGB 轉換為十六進位制

const rgbToHex = (r, g, b) =>   "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);rgbToHex(0, 51, 255); // Result: #0033ff

*轉載:http://www.yyyweb.com/5419.html

我們不是一群默默無聞的碼農,而是推進世界進步的開荒者