首页  >  文章  >  web前端  >  简短而有趣的 JavaScript 片段

简短而有趣的 JavaScript 片段

王林
王林原创
2024-07-19 17:01:19886浏览

Short & Sweet JavaScript Snippets

JavaScript 是一种极其通用且功能强大的编程语言,广泛用于 Web 开发。无论您是经验丰富的开发人员还是新手,拥有一组方便的 JavaScript 代码片段都可以节省您的时间并简化您的编码过程。在本文中,我编译了 15 个简短而精彩的 JavaScript 片段,涵盖了各种任务。让我们潜入吧!

01.获取当前数据和时间

const currentDateTime = new Date();
console.log(currentDateTime);

02. 查找数组中的最大数

const number = [5, 2, 7, 10, 1]
const maxNumber = Math.max(...number)

// 10

03. 随机排列数组

function shuffleArray(array) {
    return array.sort(() => Math.random() - 0.5);
}

04.生成1到10之间的随机数

const randomNumber = Math.floor(Math.random() * 10) + 1;
console.log(randomNumber);

// 7

05. 将字符串转换为小写

const str = 'Hello, World!''
console.log(str.toLowerCase());

// hello, world!

06. 检查是偶数还是奇数

const num = 5;
if (num % 2 === 0) {
    console.log('Number is even');
} else {
    console.log('Number is odd');
}

// 'Number is odd'

07. 创建一个简单的 10 秒倒计时器

let seconds = 5;
const countdown = setInterval(() => {
    console.log(seconds);
    seconds--;
    if (seconds < 0) {
        clearInterval(countdown);
        console.log('Countdown finished!');
    }
}, 1000);


// 5
// 4
// 3
// 2
// 1
// Countdown finsihed!

08. 将数字数组转换为字符串数组

const numbers = [1, 2, 3, 4, 5];
const strings = numbers.map(String);
console.log(strings);

// ['1', '2', '3', '4', '5']

09.删除重复项

let arr = ["apple", "mango", "apple", "orange", "mango", "mango"];
const removeDuplicates = arr => [...new Set(arr)];

console.log(removeDuplicates(arr));

// ['apple', 'mango', 'orange']

10. 将句子转换为单词数组

const sentence = "This is a sentence";
const words = sentence.split(" ");

console.log(words);

// ['This', 'is', 'a', 'sentence']

11. 重复字符串

function repeatString(str, n){
    return str.repeat(n);
}

const repeatedStr = ('abc', 3);
console.log(repeatedStr);

// 'abcabcabc'

12. 求数组的交集

// Define the intersection function
const intersection = (a, b) => a.filter(value => b.includes(value));

// Example arrays
const arrayA = [1, 2, 3, 4, 5];
const arrayB = [4, 5, 6, 7, 8];

// Use the intersection function to find common elements
const result = intersection(arrayA, arrayB);

// Log the result to the console
console.log(result);

// [4, 5]

13. 创建动态字符串

const name = 'Matin Imam';
const greeting = `Hello, ${name}!`;
console.log(greeting); // "Hello, Matin Imam!"

14. 合并对象

const person = {name: 'Matin'};
const details = {work: 'Developer'};

const fullDetails = {...person, ...details};
console.log(fullDetails);

// {name: 'Matin', age: 30}

15.延迟后重定向到新的URL

setTimeout(() => location.href = https://www.linkedin.com/in/matin-imam/", 5000);

这 15 个 JavaScript 片段只是您通过几行代码可以实现的目标的一瞥。无论您是操作数组、字符串还是处理日期和时间,这些代码片段都可以帮助简化您的开发过程。


与我联系

如果您喜欢这篇文章并且想要联系,请随时在 LinkedIn 上与我联系。我很乐意联系并分享更多有关软件开发的见解!

在 LinkedIn 上与我联系

以上是简短而有趣的 JavaScript 片段的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn