19 个 JavaScript 常用的简写技术

1.三元操作符

当想写if...else语句时,使用三元操作符来代替。

const x = 20;let answer;if (x > 10) { answer = ‘is greater‘;} else { answer = ‘is lesser‘;}

简写:

const answer = x > 10 ? ‘is greater‘ : ‘is lesser‘;

也可以嵌套if语句:

const big = x > 10 ? " greater 10" : x

2.短路求值简写方式

当给一个变量分配另一个值时,想确定源始值不是null,undefined或空值。可以写撰写一个多重条件的if语句。

if (variable1 !== null || variable1 !== undefined || variable1 !== ‘‘) { let variable2 = variable1;}

或者可以使用短路求值方法:

const variable2 = variable1 || ‘new‘;

3.声明变量简写方法

let x;let y;let z = 3;

简写方法:

let x, y, z=3;

4.if存在条件简写方法

if (likeJavaScript === true)

简写:

if (likeJavaScript)

只有likeJavaScript是真值时,二者语句才相等

如果判断值不是真值,则可以这样:

let a;if ( a !== true ) {// do something...}

简写:

let a;if ( !a ) {// do something...}

5.JavaScript循环简写方法

for (let i = 0; i < allImgs.length; i++)

简写:

for (let index in allImgs)

也可以使用Array.forEach:

function logArrayElements(element, index, array) { console.log("a[" + index + "] = " + element);}[2, 5, 9].forEach(logArrayElements);// logs:// a[0] = 2// a[1] = 5// a[2] = 9

6.短路评价

给一个变量分配的值是通过判断其值是否为null或undefined,则可以:

let dbHost;if (process.env.DB_HOST) { dbHost = process.env.DB_HOST;} else { dbHost = ‘localhost‘;}

简写:

const dbHost = process.env.DB_HOST || ‘localhost‘;

7.十进制指数

当需要写数字带有很多零时(如10000000),可以采用指数(1e7)来代替这个数字:

for (let i = 0; i < 10000; i++) {}

简写:

for (let i = 0; i < 1e7; i++) {}// 下面都是返回true1e0 === 1;1e1 === 10;1e2 === 100;1e3 === 1000;1e4 === 10000;1e5 === 100000;

8.对象属性简写

如果属性名与key名相同,则可以采用ES6的方法:

const obj = { x:x, y:y };

简写:

const obj = { x, y };

9.箭头函数简写

传统函数编写方法很容易让人理解和编写,但是当嵌套在另一个函数中,则这些优势就荡然无存。

function sayHello(name) { console.log(‘Hello‘, name);}setTimeout(function() { console.log(‘Loaded‘)}, 2000);list.forEach(function(item) { console.log(item);});

简写:

sayHello = name => console.log(‘Hello‘, name);setTimeout(() => console.log(‘Loaded‘), 2000);list.forEach(item => console.log(item));

10.隐式返回值简写

经常使用return语句来返回函数最终结果,一个单独语句的箭头函数能隐式返回其值(函数必须省略{}为了省略return关键字)

为返回多行语句(例如对象字面表达式),则需要使用()包围函数体。

function calcCircumference(diameter) { return Math.PI * diameter}var func = function func() { return { foo: 1 };};

简写:

calcCircumference = diameter => ( Math.PI * diameter;)var func = () => ({ foo: 1 });

11.默认参数值

为了给函数中参数传递默认值,通常使用if语句来编写,但是使用ES6定义默认值,则会很简洁:

function volume(l, w, h) { if (w === undefined) w = 3; if (h === undefined) h = 4; return l * w * h;}

简写:

volume = (l, w = 3, h = 4 ) => (l * w * h);volume(2) //output: 24

12.模板字符串

传统的JavaScript语言,输出模板通常是这样写的。

const welcome = ‘You have logged in as ‘ + first + ‘ ‘ + last + ‘.‘const db = ‘http://‘ + host + ‘:‘ + port + ‘/‘ + database;

ES6可以使用反引号和${}简写:

const welcome = `You have logged in as ${first} ${last}`;const db = `http://${host}:${port}/${database}`;

13.解构赋值简写方法

在web框架中,经常需要从组件和API之间来回传递数组或对象字面形式的数据,然后需要解构它

const observable = require(‘mobx/observable‘);const action = require(‘mobx/action‘);const runInAction = require(‘mobx/runInAction‘);const store = this.props.store;const form = this.props.form;const loading = this.props.loading;const errors = this.props.errors;const entity = this.props.entity;

简写:

import { observable, action, runInAction } from ‘mobx‘;const { store, form, loading, errors, entity } = this.props;

也可以分配变量名:

const { store, form, loading, errors, entity:contact } = this.props;//最后一个变量名为contact

14.多行字符串简写

需要输出多行字符串,需要使用+来拼接:

const lorem = ‘Lorem ipsum dolor sit amet, consectetur

‘ + ‘adipisicing elit, sed do eiusmod tempor incididunt

‘ + ‘ut labore et dolore magna aliqua. Ut enim ad minim

‘ + ‘veniam, quis nostrud exercitation ullamco laboris

‘ + ‘nisi ut aliquip ex ea commodo consequat. Duis aute

‘ + ‘irure dolor in reprehenderit in voluptate velit esse.

使用反引号,则可以达到简写作用:

const lorem = `Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.`

15.扩展运算符简写

扩展运算符有几种用例让JavaScript代码更加有效使用,可以用来代替某个数组函数。

// joining arraysconst odd = [1, 3, 5];const nums = [2 ,4 , 6].concat(odd);// cloning arraysconst arr = [1, 2, 3, 4];const arr2 = arr.slice()

简写:

// joining arraysconst odd = [1, 3, 5 ];const nums = [2 ,4 , 6, ...odd];console.log(nums); // [ 2, 4, 6, 1, 3, 5 ]// cloning arraysconst arr = [1, 2, 3, 4];const arr2 = [...arr];

不像concat()函数,可以使用扩展运算符来在一个数组中任意处插入另一个数组。

const odd = [1, 3, 5 ];const nums = [2, ...odd, 4 , 6];

也可以使用扩展运算符解构:

const { a, b, ...z } = { a: 1, b: 2, c: 3, d: 4 };console.log(a) // 1console.log(b) // 2console.log(z) // { c: 3, d: 4 }

16.强制参数简写

JavaScript中如果没有向函数参数传递值,则参数为undefined。为了增强参数赋值,可以使用if语句来抛出异常,或使用强制参数简写方法。

function foo(bar) { if(bar === undefined) { throw new Error(‘Missing parameter!‘); } return bar;}

简写:

mandatory = () => { throw new Error(‘Missing parameter!‘);}foo = (bar = mandatory()) => { return bar;}

17.Array.find简写

想从数组中查找某个值,则需要循环。在ES6中,find()函数能实现同样效果。

const pets = [ { type: ‘Dog‘, name: ‘Max‘}, { type: ‘Cat‘, name: ‘Karl‘}, { type: ‘Dog‘, name: ‘Tommy‘},]function findDog(name) { for(let i = 0; i<pets.length; ++i) { if(pets[i].type === ‘Dog‘ && pets[i].name === name) { return pets[i]; } }}

简写:

pet = pets.find(pet => pet.type ===‘Dog‘ && pet.name === ‘Tommy‘);console.log(pet); // { type: ‘Dog‘, name: ‘Tommy‘ }

18.Object[key]简写

考虑一个验证函数

function validate(values) { if(!values.first) return false; if(!values.last) return false; return true;}console.log(validate({first:‘Bruce‘,last:‘Wayne‘})); // true

假设当需要不同域和规则来验证,能否编写一个通用函数在运行时确认?

// 对象验证规则const schema = { first: { required:true }, last: { required:true }}// 通用验证函数const validate = (schema, values) => { for(field in schema) { if(schema[field].required) { if(!values[field]) { return false; } } } return true;}console.log(validate(schema, {first:‘Bruce‘})); // falseconsole.log(validate(schema, {first:‘Bruce‘,last:‘Wayne‘})); // true

现在可以有适用于各种情况的验证函数,不需要为了每个而编写自定义验证函数了

19.双重非位运算简写

有一个有效用例用于双重非运算操作符。可以用来代替Math.floor(),其优势在于运行更快。

Math.floor(4.9) === 4 //true

简写

~~4.9 === 4 //true

时间: 2024-10-13 03:14:59

19 个 JavaScript 常用的简写技术的相关文章

Javascript常用的简写技术有哪些?

本文和大家分享的主要是javascript 中常用的 19 个简写技术,一起来看看吧吗,希望对大家 学习javascript有所帮助. 1.三元操作符 当想写  if...else  语句时,使用三元操作符来代替. const x = 20; let answer; if (x > 10) { answer = 'is greater'; }  else { answer = 'is lesser'; } 简写: const answer = x > 10 ? 'is greater' : '

收藏 19 个 ES6常用的简写技巧

代码精炼是每个有追求的程序所向往的,本文总结了19个JavaScript的简写技术,其中包括三元操作符.短路求值简写方式.声明变量简写方法等等,还有些自己的理解加上去:希望对你有帮助. 三元操作符 当想写if...else语句时,使用元操作符来代替 const x = 20; let answer; if(x > 10){ answer = 'is greater'; }else{ answer = 'is lesser'; } 简写: const answer = x > 10?'is gr

19+ JavaScript 常用的简写技巧

博主说:对于任何基于 JavaScript 的开发人员来说,这绝对是一篇必读的文章,乃提升开发效率之神器也. 正文 js 1. 三元运算符 当你想用一行代码来写if...else语句的时候,使用三元操作符是非常好的选择,例如: const x = 20; let answer; if (x > 10) { answer = 'is greater'; } else { 可以简写为: const answer = x > 10 ? 'is greater' : 'is lesser'; 1 1

JavaScript 常用的简写技巧

1. 三元运算符 当你想用一行代码来写if...else语句的时候,使用三元操作符是非常好的选择,例如: const x = 20; let answer; if (x > 10) { answer = 'is greater'; } else { answer = 'is lesser'; } 1 2 3 4 5 6 7 1 2 3 4 5 6 7 可以简写为: const answer = x > 10 ? 'is greater' : 'is lesser'; 1 1 也可以嵌套if语句

分针网——每日分享:10个程序员常用的代码简写技术

更多文章:www.f-z.cn 今天小编我给大家整理了一份10个程序员常用的代码简写技术,看懂一种是入门,全懂就是大神,你能知道几个呢? 1.三元操作符 当想写if...else语句时,使用三元操作符来代替. const x = 20;let answer;if (x > 10) { 简写: const answer = x > 10 ? 'is greater' : 'is lesser'; 也可以嵌套if语句: const big = x > 10 ? " greater

Javascript 常用函数【3】

jquery选中radio //如果之前有选中的,则把选中radio取消掉 $("#tj_cat .pro_category").each(function() { if ($(this).attr('checked')){ $(this).attr('checked' ,false); } }); //获取被选中的标签的值 radio:(checkbox和这个一样) var val=$('input:radio[name="sex"]:checked').val(

【javascript】javascript常用函数大全

javascript函数一共可分为五类:   •常规函数   •数组函数   •日期函数   •数学函数   •字符串函数   1.常规函数   javascript常规函数包括以下9个函数:   (1)alert函数:显示一个警告对话框,包括一个OK按钮.   (2)confirm函数:显示一个确认对话框,包括OK.Cancel按钮.   (3)escape函数:将字符转换成Unicode码.   (4)eval函数:计算表达式的结果.   (5)isNaN函数:测试是(true)否(fals

javascript常用代码大全

jquery选中radio //如果之前有选中的,则把选中radio取消掉 $("#tj_cat .pro_category").each(function() { if ($(this).attr('checked')){ $(this).attr('checked' ,false); } }); //获取被选中的标签的值 radio:(checkbox和这个一样) var val=$('input:radio[name="sex"]:checked').val(

Javascript 常用扩展方法

这篇文章纯粹是为了保存这些方法,供以后翻阅,其实一直保存在 evernote 里面,但觉得还是放到对的地方会好点. 现在收录的很少,希望以后会慢慢增多. 数组扩展 contains,remove 扩展 1 function ArrayContains(array, obj) { 2 for (var i = 0; i < array.length; i++) { 3 if (array[i] === obj) { 4 return true ; 5 } 6 } 7 return false ;