美文网首页
js中一些【小而美】的编写优雅代码的方法

js中一些【小而美】的编写优雅代码的方法

作者: 谁抢了我的麋鹿 | 来源:发表于2018-04-10 22:49 被阅读0次

撸码一年有余,渐渐的开始注意代码规范与代码质量,在看别人的代码中慢慢学习积累各种小而美的写法使代码优雅健壮。

三目运算

bad

const num = 20;
let str;
if (num > 10) {
    str = 'is greater';
} else {
    str = 'is lesser';
}

good

const num = 20;
let str = num>10 ? 'a':'b'

短路运算

在很多情况下可能会对某些参数进行判断来增加函数的健壮性

bad

let tem=null;
if (params !== null || params !== undefined || params !== '') {
     tem = params;
}else{
    tem='init'
}

good

let tem = params || ''init"

if判断某个变量是否为true时

bad

let likeJavaScript
if (likeJavaScript === true){
  console.log("hello world")
}

good

let likeJavaScript
if (likeJavaScript){
}

此写法须注意条件参数在做类型转换时是否为true

十进制指数

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

bad

let i=1000000

good

let i=1e7

对象属性简写

如果属性名与key名相同,则可以采用ES6的方法: const obj = { x:x, y:y };

bad

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

good

const obj={
  x,
  y
}

箭头函数简写

foo的传统写法固然是非常直观的能让人理解,但是在将函数作为参数传递的过程中就不是十分优雅了,而箭头函数就能良好的展示函参关系

bad

list.forEach(function(item) {
 console.log(item.name); 
});

good

list.forEach(item=>console.log(item));

箭头函数简写

foo的传统写法固然是非常直观的能让人理解,但是在将函数作为参数传递的过程中就不是十分优雅了,而箭头函数就能良好的展示函参关系

bad

list.forEach(function(item) {
 console.log(item.name); 
});

good

list.forEach(item=>console.log(item));

箭头函数内的隐式返回值简写

在箭头函数内有返回值时省略不必要的return

bad

const foo = () =>{
  return 111  
}

good

const foo = () =>(111)

给函数设置默认参数值

bad

function temFoo(a,b,c){
  a = a||0;
  b = b||0;
  c = c||0;
}

good

function temFoo(a=0,b=0,c=0){
  //...
}

解构赋值的简写方法

在平时的业务中,经常需要在组件和API中传递数组或对象字面量的数据,

bad

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;

good

import { observable, action, runInAction } from 'mobx';

const { store, form, loading, errors, entity } = this.props;

扩展运算符简写

bad

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

good

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

强制参数简写

我们在编写某些函数时,有些参数是必传项,但是可能调用的同学没有传递该参数,我们一般会抛出异常

bad

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

good

mandatory = () => {
  throw new Error('Missing parameter!');
}

foo = (bar = mandatory()) => {
  return bar;
}

相关文章

  • js中一些【小而美】的编写优雅代码的方法

    撸码一年有余,渐渐的开始注意代码规范与代码质量,在看别人的代码中慢慢学习积累各种小而美的写法使代码优雅健壮。 三目...

  • 如何编写优雅的JS代码

    Bad: var yyyymmdstr = moment().format('YYYY/MM/DD') Good:...

  • 补充2: JSX中编写html代码时的注意事项

    JSX中允许在js代码中编写html代码, 在react中, 我们在组件的render()方法中return 由h...

  • Python高效编程技巧

    在使用Python编写代码时,有些问题的解决方法很多,但是如果我们使用了更简单的方法,不但让代码看起来优雅很多,而...

  • 前端知识点(9)

    JS编写位置 可以将js代码编写到外部js文件中,然后通过script标签引入 写到外部文件中可以在不同的页面中同...

  • OC和JS的交互那点事

    1、OC调用JS代码 在代理方法webViewDidFinishLoad:方法中调用JS代码 2、JS调用OC代码...

  • ios - 编写优雅代码的小tips

    tips1 : 先熟悉OC的一些语言特性 虽然现在swift语言已经出来了,但是就现在的大背景来说,OC还是需要一...

  • JS编写规则

    编写位置 1、 Js 代码与需要编写到 标签中。2、script标签写到head标签中3、 Js 需要严格区分大小...

  • js编写规则

    编写位置 1、 Js 代码与需要编写到 标签中。2、script标签写到head标签中3、 Js 需要严格区分大小...

  • JS基本语法

    编写位置: 可以将js代码编写到外部js文件中,然后通过script标签引入 写到外部文件中可以在不同的页面中同时...

网友评论

      本文标题:js中一些【小而美】的编写优雅代码的方法

      本文链接:https://www.haomeiwen.com/subject/ovfohftx.html