javascript的8种使用技巧

javascript的8种使用技巧

  1. 使用计算属性名来动态设置对象属性。

    const propName = 'age';
    const person = {
      name: 'John',
      [propName]: 30
    }; 
    
  2. 字符串方法:includes()、startsWith()、endsWith()

    const str = 'Hello, World!';
    console.log(str.includes('World')); // true
    console.log(str.startsWith('Hello')); // true
    console.log(str.endsWith('!')); // true 
    
  3. 使用 setTimeout 和 setInterval

    setTimeout(() => {
      console.log('2 秒后执行');
    }, 2000);
    
    const intervalId = setInterval(() => {
      console.log('每 3 秒执行一次');
    }, 3000);
    
  4. 克隆对象和数组

    const original = { name: 'John', age: 30 };
    const clone = { ...original };
    const arr = [1, 2, 3];
    const arrClone = [...arr]; 
    
  5. 使用 for…of 循环进行迭代
    使用 for…of 循环对数组、字符串和其他可迭代对象进行更易读的迭代。

    const numbers = [1, 2, 3, 4, 5];
    
    for (const number of numbers) {
      console.log(number);
    } 
    
  6. 数组方法:map()、filter()、reduce()

    const numbers = [1, 2, 3, 4, 5];
    
    const doubled = numbers.map(num => num * 2);
    const evens = numbers.filter(num => num % 2 === 0);
    const sum = numbers.reduce((total, num) => total + num, 0); 
    
  7. 空值合并运算符 ??
    空值合并运算符 (??) 可以在左侧操作数为 null 或 undefined 时返回右侧操作数。

    const user = { name: 'John' };
    const name = user.name ?? 'Guest'; 
    
  8. 可选链 ?.
    可选链允许你安全地访问深层嵌套的属性,而无需检查每个引用是否有效。

    let name = movie.director?.name;
    

    等价于

    let name;
    if (movie.director != null) {
      name = movie.director.name;
    }
    

    ?.通过减少两行代码简化getDirector()函数,这就是为什么我喜欢可选链的原因。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值