看看這13句 JavaScript單行程式碼,會讓你看起來像個專家!
阿新 • • 發佈:2021-07-14
1. 獲取一個隨機布林值 (true/false)
這個函式使用 Math.random() 方法返回一個布林值(true 或 false)。Math.random 將在 0 和 1 之間建立一個隨機數,之後我們檢查它是否高於或低於 0.5。這意味著得到真或假的機率是 50%/50%。
const randomBoolean = () => Math.random() >= 0.5;
console.log(randomBoolean());
// Result: a 50/50 change on returning true of false
2. 檢查日期是否為工作日
使用這個方法,你就可以檢查函式引數是工作日還是週末。
const isWeekday = (date) => date.getDay() % 6 !== 0;
console.log(isWeekday(new Date(2021, 0, 11)));
// Result: true (Monday)
console.log(isWeekday(new Date(2021, 0, 10)));
// Result: false (Sunday)
3. 反轉字串
有幾種不同的方法來反轉一個字串。以下程式碼是最簡單的方式之一。
const reverse = str => str.split('').reverse().join('');
reverse('hello world');
// Result: 'dlrow olleh'
4. 檢查當前 Tab 頁是否在前臺
我們可以通過使用 document.hidden 屬性來檢查當前標籤頁是否在前臺中。
const isBrowserTabInView = () => document.hidden;
isBrowserTabInView();
// Result: returns true or false depending on if tab is in view / focus
5. 檢查數字是否為奇數
最簡單的方式是通過使用模數運算子(%)來解決。如果你對它不太熟悉,這裡是Stack Overflow上的一個很好的圖解。
const isEven = num => num % 2 === 0;
console.log(isEven(2));
// Result: true
console.log(isEven(3));
// Result: false
6. 從日期中獲取時間
通過使用 toTimeString() 方法,在正確的位置對字串進行切片,我們可以從提供的日期中獲取時間或者當前時間。
const timeFromDate = date => date.toTimeString().slice(0, 8);
console.log(timeFromDate(new Date(2021, 0, 10, 17, 30, 0)));
// Result: "17:30:00"
console.log(timeFromDate(new Date()));
// Result: will log the current time
7. 保留小數點(非四捨五入)
使用 Math.pow() 方法,我們可以將一個數字截斷到某個小數點。
const toFixed = (n, fixed) => ~~(Math.pow(10, fixed) * n) / Math.pow(10, fixed);
// Examples
toFixed(25.198726354, 1); // 25.1
toFixed(25.198726354, 2); // 25.19
toFixed(25.198726354, 3); // 25.198
toFixed(25.198726354, 4); // 25.1987
toFixed(25.198726354, 5); // 25.19872
toFixed(25.198726354, 6); // 25.198726
http://www.ssnd.com.cn 化妝品OEM代加工
8. 檢查元素當前是否為聚焦狀態
我們可以使用 document.activeElement 屬性檢查一個元素當前是否處於聚焦狀態。
const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
// Result: will return true if in focus, false if not in focus
9. 檢查瀏覽器是否支援觸控事件
const touchSupported = () => {
('ontouchstart' in window || window.DocumentTouch && document instanceof window.DocumentTouch);
}
console.log(touchSupported());
// Result: will return true if touch events are supported, false if not
10. 檢查當前使用者是否為蘋果裝置
我們可以使用 navigator.platform 來檢查當前使用者是否為蘋果裝置。
const isAppleDevice = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
console.log(isAppleDevice);
// Result: will return true if user is on an Apple device
11. 滾動到頁面頂部
window.scrollTo() 方法會取一個 x 和 y 座標來進行滾動。如果我們將這些座標設定為零,就可以滾動到頁面的頂部。
注意:IE 不支援 scrollTo() 方法。
const goToTop = () => window.scrollTo(0, 0);
goToTop();
// Result: will scroll the browser to the top of the page
12. 獲取所有引數平均值
我們可以使用 reduce 方法來獲得函式引數的平均值
const average = (...args) => args.reduce((a, b) => a + b) / args.length;
average(1, 2, 3, 4);
// Result: 2.5
13. 轉換華氏度/攝氏度。(這個應該很少在國內用到吧)
處理溫度有時會讓人感到困惑。這 2 個功能將幫助你將華氏溫度轉換為攝氏溫度,反之亦然。
const celsiusToFahrenheit = (celsius) => celsius * 9/5 + 32;
const fahrenheitToCelsius = (fahrenheit) => (fahrenheit - 32) * 5/9;
// Examples
celsiusToFahrenheit(15); // 59
celsiusToFahrenheit(0); // 32
celsiusToFahrenheit(-20); // -4
fahrenheitToCelsius(59); // 15
fahrenheitToCelsius(32); // 0