1. 程式人生 > 其它 >13個JavaScript 一行程式,讓你看起來像個專家

13個JavaScript 一行程式,讓你看起來像個專家

作者:Shadeed 譯者:前端小智 來源:medium

有夢想,有乾貨,微信搜尋【大遷世界】關注這個在凌晨還在刷碗的刷碗智。

本文 GitHubgithub.com/qq449245884…已收錄,有一線大廠面試完整考點、資料以及我的系列文章。

JavaScript 可以做很多好玩的事, 從複雜的框架到處理API,有太多的東西需要學習。但是,它也能讓我們只用一行就能做一些了不起的事情。

1. 獲得一個隨機的布林值(true/false

該函式使用Math.random()方法返回一個布林值(true或者false)。Math.random建立一個01之間的隨機數,我們只要檢查它是否高於或低於0.5

,就有50%機會得到truefalse

const randomBoolean = () => Math.random() >= 0.5;
console.log(randomBoolean());
複製程式碼

2. 檢查所提供的日期是否為工作日

使用這種方法,我們能夠檢查在函式中提供的日期是否是工作日或週末的日子。

const isWeekday = (date) => date.getDay() % 6 !== 0;

console.log(isWeekday(new Date(2021, 7, 6)));
// true  因為是週五

console.log(isWeekday(new Date(2021, 7, 7)));
// false 因為是週六
複製程式碼

3.反轉字串

有幾種不同的方法來反轉一個字串。這是最簡單的一種,使用split()reverse()join()方法。

const reverse = str => str.split('').reverse().join('');
reverse('hello world');     
// 'dlrow olleh'
複製程式碼

4.檢查當前標籤是否隱藏

Document.hidden(只讀屬性)返回布林值,表示頁面是(true)否(false)隱藏。

const isBrowserTabInView = () => document.hidden;
isBrowserTabInView();
複製程式碼

場外:無意間發現愛奇藝廣告播放時間居然是在當前標籤頁啟用的時候才會進行倒計時,離開當前標籤頁的時候,倒計時停止,百度一下發現document.hidden這個東東。

document.hiddenh5新增加api使用的時候有相容性問題。

var hidden
if (typeof document.hidden !== "undefined") {
    hidden = "hidden";
} else if (typeof document.mozHidden !== "undefined") {
    hidden = "mozHidden";
} else if (typeof document.msHidden !== "undefined") {
    hidden = "msHidden";
} else if (typeof document.webkitHidden !== "undefined") {
    hidden = "webkitHidden";
}
console.log("當前頁面是否被隱藏:" + document[hidden])
複製程式碼

5. 檢查一個數字是偶數還是奇數

const isEven = num => num % 2 === 0;
console.log(isEven(2));
// true
console.log(isEven(3));
// false
複製程式碼

6. 從一個日期獲取時間

const timeFromDate = date => date.toTimeString().slice(0, 8);

console.log(timeFromDate(new Date(2021, 0, 10, 17, 30, 0))); 
// "17:30:00"

console.log(timeFromDate(new Date()));
// 列印當前的時間
複製程式碼

7. 保留 n 位小數

const toFixed = (n, fixed) => ~~(Math.pow(10, fixed) * n) / Math.pow(10, fixed);
// 事例
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
複製程式碼

8. 檢查當前是否有元素處於焦點中

我們可以使用document.activeElement屬性檢查一個元素是否當前處於焦點。

const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
// 如果在焦點中返回true,如果不在焦點中返回 false
複製程式碼

9. 檢查當前瀏覽器是否支援觸控事件

const touchSupported = () => {
  ('ontouchstart' in window || window.DocumentTouch && document instanceof window.DocumentTouch);
}
console.log(touchSupported());
// 如果支援觸控事件,將返回true,如果不支援則返回false。
複製程式碼

10. 檢查當前瀏覽器是否在蘋果裝置上

const isAppleDevice = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
console.log(isAppleDevice);
複製程式碼

11. 滾動到頁面頂部

const goToTop = () => window.scrollTo(0, 0);
goToTop();
複製程式碼

12. 獲取引數的平均數值

const average = (...args) => args.reduce((a, b) => a + b) / args.length;
average(1, 2, 3, 4);
// 2.5
複製程式碼

13.華氏/攝氏轉換

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
複製程式碼

~完,我是刷碗智,會所按摩走起!


原文:medium.com/dailyjs/13-…

虛心學習、豐富自己