您好,登錄后才能下訂單哦!
這篇文章主要介紹“JavaScript一行代碼實用技巧有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“JavaScript一行代碼實用技巧有哪些”文章能幫助大家解決問題。
該方法用于檢測給出的日期是否有效:
const isDateValid = (...val) => !Number.isNaN(new Date(...val).valueOf()); isDateValid("December 17, 1995 03:24:00"); // true
該方法用于計算兩個日期之間的間隔時間:
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天~
該方法用于檢測給出的日期位于今年的第幾天:
const dayOfYear = (date) => Math.floor((date - new Date(date.getFullYear(), 0, 0)) / 1000 / 60 / 60 / 24); dayOfYear(new Date()); // 307
2021年已經過去300多天了~
該方法可以用于將時間轉化為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
該方法用于將英文字符串的首字母大寫處理:
const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1) capitalize("hello world") // Hello world
該方法用于將一個字符串進行翻轉操作,返回翻轉后的字符串:
const reverse = str => str.split('').reverse().join(''); reverse('hello world'); // 'dlrow olleh'
該方法用于生成一個隨機的字符串:
const randomString = () => Math.random().toString(36).slice(2); randomString();
該方法可以從指定長度處截斷字符串:
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...'
該方法用于去除字符串中的HTML元素:
const stripHtml = html => (new DOMParser().parseFromString(html, 'text/html')).body.textContent || '';
該方法用于移除數組中的重復項:
const removeDuplicates = (arr) => [...new Set(arr)]; console.log(removeDuplicates([1, 2, 2, 3, 3, 4, 4, 5, 5, 6]));
該方法用于判斷一個數組是否為空數組,它將返回一個布爾值:
const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0; isNotEmpty([1, 2, 3]); // true
可以使用下面兩個方法來合并兩個數組:
const merge = (a, b) => a.concat(b); const merge = (a, b) => [...a, ...b];
該方法用于判斷一個數字是奇數還是偶數:
const isEven = num => num % 2 === 0; isEven(996);
const average = (...args) => args.reduce((a, b) => a + b) / args.length; average(1, 2, 3, 4, 5); // 3
該方法用于獲取兩個整數之間的隨機整數
const random = (min, max) => Math.floor(Math.random() * (max - min + 1) + min); random(1, 50);
該方法用于將一個數字按照指定位進行四舍五入:
const round = (n, d) => Number(Math.round(n + "e" + d) + "e-" + d) round(1.005, 2) //1.01 round(1.555, 2) //1.56
該方法可以將一個RGB的顏色值轉化為16進制值:
const rgbToHex = (r, g, b) => "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1); rgbToHex(255, 255, 255); // '#ffffff'
該方法用于獲取一個隨機的十六進制顏色值:
const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`; randomHex();
該方法使用 navigator.clipboard.writeText 來實現將文本復制到剪貼板:
const copyToClipboard = (text) => navigator.clipboard.writeText(text); copyToClipboard("Hello World");
該方法可以通過使用 document.cookie 來訪問 cookie 并清除存儲在網頁中的所有 cookie:
const clearCookies = document.cookie.split(';').forEach(cookie => document.cookie = cookie.replace(/^ +/, '').replace(/=.*/, `=;expires=${new Date(0).toUTCString()};path=/`));
該方法通過內置的 getSelection 屬性獲取用戶選擇的文本:
const getSelectedText = () => window.getSelection().toString(); getSelectedText();
該方法用于檢測當前的環境是否是黑暗模式,它是一個布爾值:
const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches console.log(isDarkMode)
該方法用于在頁面中返回頂部:
const goToTop = () => window.scrollTo(0, 0); goToTop();
該方法用于檢測當前標簽頁是否已經激活:
const isTabInView = () => !document.hidden;
該方法用于檢測當前的設備是否是蘋果的設備:
const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform); isAppleDevice();
該方法用于判斷頁面是否已經底部:
const scrolledToBottom = () => document.documentElement.clientHeight + window.scrollY >= document.documentElement.scrollHeight;
該方法用于重定向到一個新的URL:
const redirect = url => location.href = url redirect("https://www.google.com/")
該方法用于打開瀏覽器的打印框:
const showPrintDialog = () => window.print()
該方法可以返回一個隨機的布爾值,使用Math.random()可以獲得0-1的隨機數,與0.5進行比較,就有一半的概率獲得真值或者假值。
const randomBoolean = () => Math.random() >= 0.5; randomBoolean();
可以使用以下形式在不適用第三個變量的情況下,交換兩個變量的值:
[foo, bar] = [bar, foo];
該方法用于獲取一個變量的類型:
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
該方法用于攝氏度和華氏度之間的轉化:
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
該方法用于檢測一個JavaScript對象是否為空:
const isEmpty = obj => Reflect.ownKeys(obj).length === 0 && obj.constructor === Object;
關于“JavaScript一行代碼實用技巧有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。