33個非常實用的JavaScript一行程式碼
33個非常實用的JavaScript一行程式碼
一、日期處理
1. 檢察日期是否有效
該方法用於檢測給出的日期是否有效:
const isDateValid = (...val) => !Number.isNaN(new Date(...val).valueOf());
isDateValid("December 17, 1995 03:24:00"); // true
2. 計算兩個日期之間的間隔
該方法用於計算兩個日期之間的間隔時間:
const dayDif = (date1, date2) => Math.ceil(Math.abs(date1.getTime() - date2.getTime()) / 86400000) dayDif(new Date("2021-11-3"), new Date("2022-2-1")) // 90
距離過年還有90天~
3. 查詢日期位於一年中的第幾天
該方法用於檢測給出的日期位於今年的第幾天:
const dayOfYear = (date) => Math.floor((date - new Date(date.getFullYear(), 0, 0)) / 1000 / 60 / 60 / 24);
dayOfYear(new Date()); // 307
2021年已經過去300多天了~
4. 時間格式化
該方法可以用於將時間轉化為hour:minutes:seconds的格式:
const timeFromDate = date => date.toTimeString().slice(0, 8); timeFromDate(new Date(2021, 11, 2, 12, 30, 0)); // 12:30:00 timeFromDate(new Date()); // 返回當前時間 09:00:00
二、字串處理
1. 字串首字母大寫
該方法用於將英文字串的首字母大寫處理:
const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)
capitalize("hello world") // Hello world
2. 翻轉字串
該方法用於將一個字串進行翻轉操作,返回翻轉後的字串:
const reverse = str => str.split('').reverse().join('');
reverse('hello world'); // 'dlrow olleh'
3. 隨機字串
該方法用於生成一個隨機的字串:
const randomString = () => Math.random().toString(36).slice(2);
randomString();
4. 截斷字串
該方法可以從指定長度處截斷字串:
const truncateString = (string, length) => string.length < length ? string : `${string.slice(0, length - 3)}...`;
truncateString('Hi, I should be truncated because I am too loooong!', 36) // 'Hi, I should be truncated because...'
5. 去除字串中的HTML
該方法用於去除字串中的HTML元素:
const stripHtml = html => (new DOMParser().parseFromString(html, 'text/html')).body.textContent || '';
三、陣列處理
1. 從陣列中移除重複項
該方法用於移除陣列中的重複項:
const removeDuplicates = (arr) => [...new Set(arr)];
console.log(removeDuplicates([1, 2, 2, 3, 3, 4, 4, 5, 5, 6]));
2. 判斷陣列是否為空
該方法用於判斷一個數組是否為空陣列,它將返回一個布林值:
const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0;
isNotEmpty([1, 2, 3]); // true
3. 合併兩個陣列
可以使用下面兩個方法來合併兩個陣列:
const merge = (a, b) => a.concat(b);
const merge = (a, b) => [...a, ...b];
四、數字操作
1. 判斷一個數是奇數還是偶數
該方法用於判斷一個數字是奇數還是偶數:
const isEven = num => num % 2 === 0;
isEven(996);
2. 獲得一組數的平均值
const average = (...args) => args.reduce((a, b) => a + b) / args.length;
average(1, 2, 3, 4, 5); // 3
3. 獲取兩個整數之間的隨機整數
該方法用於獲取兩個整數之間的隨機整數
const random = (min, max) => Math.floor(Math.random() * (max - min + 1) + min);
random(1, 50);
4. 指定位數四捨五入
該方法用於將一個數字按照指定位進行四捨五入:
const round = (n, d) => Number(Math.round(n + "e" + d) + "e-" + d)
round(1.005, 2) //1.01
round(1.555, 2) //1.56
五、顏色操作
1. 將RGB轉化為十六機制
該方法可以將一個RGB的顏色值轉化為16進位制值:
const rgbToHex = (r, g, b) => "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
rgbToHex(255, 255, 255); // '#ffffff'
2. 獲取隨機十六進位制顏色
該方法用於獲取一個隨機的十六進位制顏色值:
const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;
randomHex();
六、瀏覽器操作
1. 複製內容到剪下板
該方法使用 navigator.clipboard.writeText 來實現將文字複製到剪貼簿:
const copyToClipboard = (text) => navigator.clipboard.writeText(text);
copyToClipboard("Hello World");
2. 清除所有cookie
該方法可以通過使用 document.cookie 來訪問 cookie 並清除儲存在網頁中的所有 cookie:
const clearCookies = document.cookie.split(';').forEach(cookie => document.cookie = cookie.replace(/^ +/, '').replace(/=.*/,
=;expires=${new Date(0).toUTCString()};path=/));
3. 獲取選中的文字
該方法通過內建的 getSelection 屬性獲取使用者選擇的文字:
const getSelectedText = () => window.getSelection().toString();
getSelectedText();
4. 檢測是否是黑暗模式
該方法用於檢測當前的環境是否是黑暗模式,它是一個布林值:
const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
console.log(isDarkMode)
5. 滾動到頁面頂部
該方法用於在頁面中返回頂部:
const goToTop = () => window.scrollTo(0, 0);
goToTop();
6. 判斷當前標籤頁是否啟用
該方法用於檢測當前標籤頁是否已經啟用:
const isTabInView = () => !document.hidden;
7. 判斷當前是否是蘋果裝置
該方法用於檢測當前的裝置是否是蘋果的裝置:
const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform);
isAppleDevice();
8. 是否滾動到頁面底部
該方法用於判斷頁面是否已經底部:
const scrolledToBottom = () => document.documentElement.clientHeight + window.scrollY >= document.documentElement.scrollHeight;
9. 重定向到一個URL
該方法用於重定向到一個新的URL:
const redirect = url => location.href = url
redirect("https://www.google.com/")
10. 開啟瀏覽器列印框
該方法用於開啟瀏覽器的列印框:
const showPrintDialog = () => window.print()
七、其他操作
1. 隨機布林值
該方法可以返回一個隨機的布林值,使用Math.random()可以獲得0-1的隨機數,與0.5進行比較,就有一半的概率獲得真值或者假值。
const randomBoolean = () => Math.random() >= 0.5;
randomBoolean();
2. 變數交換
可以使用以下形式在不適用第三個變數的情況下,交換兩個變數的值:
[foo, bar] = [bar, foo];
3. 獲取變數的型別
該方法用於獲取一個變數的型別:
const trueTypeOf = (obj) => Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
trueTypeOf(''); // string
trueTypeOf(0); // number
trueTypeOf(); // undefined
trueTypeOf(null); // null
trueTypeOf({}); // object
trueTypeOf([]); // array
trueTypeOf(0); // number
trueTypeOf(() => {}); // function
4. 華氏度和攝氏度之間的轉化
該方法用於攝氏度和華氏度之間的轉化:
const celsiusToFahrenheit = (celsius) => celsius * 9/5 + 32;
const fahrenheitToCelsius = (fahrenheit) => (fahrenheit - 32) * 5/9;
celsiusToFahrenheit(15); // 59
celsiusToFahrenheit(0); // 32
celsiusToFahrenheit(-20); // -4
fahrenheitToCelsius(59); // 15
fahrenheitToCelsius(32); // 0
5. 檢測物件是否為空
該方法用於檢測一個JavaScript物件是否為空:
const isEmpty = obj => Reflect.ownKeys(obj).length === 0 && obj.constructor === Object;
轉自
作者:CUGGZ 連結:https://juejin.cn/post/7025771605422768159