文章譯自 此處,老外也很會寫標題。標題可能有 XX 黨嫌疑,可是部份內容仍是挺有用的。javascript
JavaScript 能夠作不少神奇的事情!前端
從複雜的框架處處理 API,有太多的東西須要學習。java
可是,它也能讓你只用一行代碼就能作一些了不得的事情。瀏覽器
看看這 13 句 JavaScript 單行代碼,會讓你看起來像個專家!markdown
這個函數使用 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
複製代碼
使用這個方法,你就能夠檢查函數參數是工做日仍是週末。dom
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)
複製代碼
有幾種不一樣的方法來反轉一個字符串。如下代碼是最簡單的方式之一。函數
const reverse = str => str.split('').reverse().join('');
reverse('hello world');
// Result: 'dlrow olleh'
複製代碼
咱們能夠經過使用 document.hidden
屬性來檢查當前標籤頁是否在前臺中。oop
const isBrowserTabInView = () => document.hidden;
isBrowserTabInView();
// Result: returns true or false depending on if tab is in view / focus
複製代碼
最簡單的方式是經過使用模數運算符(%)來解決。若是你對它不太熟悉,這裏是 Stack Overflow 上的一個很好的圖解。學習
const isEven = num => num % 2 === 0;
console.log(isEven(2));
// Result: true
console.log(isEven(3));
// Result: false
複製代碼
經過使用 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
複製代碼
使用 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
複製代碼
咱們可使用 document.activeElement
屬性檢查一個元素當前是否處於聚焦狀態。
const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
// Result: will return true if in focus, false if not in focus
複製代碼
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
複製代碼
咱們可使用 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
複製代碼
window.scrollTo()
方法會取一個 x 和 y 座標來進行滾動。若是咱們將這些座標設置爲零,就能夠滾動到頁面的頂部。
注意:IE 不支持 scrollTo()
方法。
const goToTop = () => window.scrollTo(0, 0);
goToTop();
// Result: will scroll the browser to the top of the page
複製代碼
咱們可使用 reduce
方法來得到函數參數的平均值。
const average = (...args) => args.reduce((a, b) => a + b) / args.length;
average(1, 2, 3, 4);
// Result: 2.5
複製代碼
處理溫度有時會讓人感到困惑。這 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
複製代碼
謝謝你的閱讀!但願你今天能學到一些新的東西。
本文首發於公衆號「前端真好玩」,歡迎關注。