欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

13个JavaScript 一行程序,让你看起来就是个专家

程序员文章站 2022-06-25 11:05:42
目录1. 获得一个随机的布尔值(true/false)该函数使用math.random()方法返回一个布尔值(true 或者 false)。math.random创建一个0到1之间的随机数,我们只要检...

1. 获得一个随机的布尔值(true/false)

该函数使用math.random()方法返回一个布尔值(true 或者 false)。math.random创建一个0到1之间的随机数,我们只要检查它是否高于或低于0.5,就有50%机会得到true或false。

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.hidden是h5新增加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

到此这篇关于13个javascript 一行程序,让你看起来就是个专家的文章就介绍到这了,更多相关javascript 内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: JavaScript