JavaScript 可以做很多神奇的事情!
從複雜的框架到處理 API,有太多的東西需要學習。
但是,它也能讓你只用一行程式碼就能做一些了不起的事情。
看看這 13 句 JavaScript 單行程式碼,會讓你看起來像個專家!
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: trueconsole.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);// ExamplestoFixed(25.198726354, 1); // 25.1toFixed(25.198726354, 2); // 25.19toFixed(25.198726354, 3); // 25.198toFixed(25.198726354, 4); // 25.1987toFixed(25.198726354, 5); // 25.19872toFixed(25.198726354, 6); // 25.198726
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;// ExamplescelsiusToFahrenheit(15); // 59celsiusToFahrenheit(0); // 32celsiusToFahrenheit(-20); // -4fahrenheitToCelsius(59); // 15fahrenheitToCelsius(32); // 0
謝謝你的閱讀!希望你今天能學到一些新的東西。