5分でJavaScriptの実用的なコツをマスター

36995 ワード

简评:JavaScriptは最初はウェブページにリアルタイムのアニメーション効果を加えるだけで、今JSはすでに前后の端で食べることができて、しかも年度の流行言语です.本文はいくつかのJSの小さいコツを分かち合って、あなたに半分の仕事を倍にすることができます~
1.配列末尾要素の削除
1つの簡単な方法は、配列のlength値を変更することです.
 
  
  1. const arr = [11, 22, 33, 44, 55, 66];

  2. // truncanting

  3. arr.length = 3;

  4. console.log(arr); //=> [11, 22, 33]

  5. // clearing

  6. arr.length = 0;

  7. console.log(arr); //=> []

  8. console.log(arr[2]); //=> undefined

2.使用对象解构(object destructuring)来模拟命名参数

如果需要将一系列可选项作为参数传入函数,你很可能会使用对象(Object)来定义配置(Config)。

 
  
  1. doSomething({ foo: 'Hello', bar: 'Hey!', baz: 42 });

  2. function doSomething(config) {

  3.  const foo = config.foo !== undefined ? config.foo : 'Hi';

  4.  const bar = config.bar !== undefined ? config.bar : 'Yo!';

  5.  const baz = config.baz !== undefined ? config.baz : 13;

  6.  // ...

  7. }

不过这是一个比较老的方法了,它模拟了 JavaScript 中的命名参数。

在 ES 2015 中,你可以直接使用对象解构:

 
  
  1. function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 }) {

  2.  // ...

  3. }

让参数可选也很简单:

 
  
  1. function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 } = {}) {

  2.  // ...

  3. }

3.使用对象解构来处理数组

可以使用对象解构的语法来获取数组的元素:

 
  
  1. const csvFileLine = '1997,John Doe,US,[email protected],New York';

  2. const { 2: country, 4: state } = csvFileLine.split(',');

4.在 Switch 语句中使用范围值

可以这样写满足范围值的语句:

 
  
  1. function getWaterState(tempInCelsius) {

  2.  let state;

  3.  switch (true) {

  4.    case (tempInCelsius <= 0):

  5.      state = 'Solid';

  6.      break;

  7.    case (tempInCelsius > 0 && tempInCelsius < 100):

  8.      state = 'Liquid';

  9.      break;

  10.    default:

  11.      state = 'Gas';

  12.  }

  13.  return state;

  14. }

5.await async

async/await , Promise.all await async

 
  
  1. await Promise.all([anAsyncCall(), thisIsAlsoAsync(), oneMore()])

6. pure objects

100% pure object,  Object (  constructortoString()

 
  
  1. const pureObject = Object.create(null);

  2. console.log(pureObject); //=> {}

  3. console.log(pureObject.constructor); //=> undefined

  4. console.log(pureObject.toString); //=> undefined

  5. console.log(pureObject.hasOwnProperty); //=> undefined

7. JSON

JSON.stringify , JSON

 
  
  1. const obj = {

  2.  foo: { bar: [11, 22, 33, 44], baz: { bing: true, boom: 'Hello' } }

  3. };

  4. // The third parameter is the number of spaces used to

  5. // beautify the JSON output.

  6. JSON.stringify(obj, null, 4);

  7. // =>"{

  8. // =>    "foo": {

  9. // =>        "bar": [

  10. // =>            11,

  11. // =>            22,

  12. // =>            33,

  13. // =>            44

  14. // =>        ],

  15. // =>        "baz": {

  16. // =>            "bing": true,

  17. // =>            "boom": "Hello"

  18. // =>        }

  19. // =>    }

  20. // =>}"

8.

Spread , :

 
  
  1. const removeDuplicateItems = arr => [...new Set(arr)];

  2. removeDuplicateItems([42, 'foo', 42, 'foo', true, true]);

  3. //=> [42, "foo", true]

9.

Spread :

 
  
  1. const arr = [11, [22, 33], [44, 55], 66];

  2. const flatArr = [].concat(...arr); //=> [11, 22, 33, 44, 55, 66]

, , :

 
  
  1. function flattenArray(arr) {

  2.  const flattened = [].concat(...arr);

  3.  return flattened.some(item => Array.isArray(item)) ?

  4.    flattenArray(flattened) : flattened;

  5. }

  6. const arr = [11, [22, 33], [44, [55, 66, [77, [88]], 99]]];

  7. const flatArr = flattenArray(arr);

  8. //=> [11, 22, 33, 44, 55, 66, 77, 88, 99]

JavaScript ~


:https://medium.freecodecamp.org/9-neat-javascript-tricks-e2742f2735c3  :Alcides Queiroz

https://zhuanlan.zhihu.com/p/37493249