ホームページ  >  記事  >  ウェブフロントエンド  >  ES6 Super のいくつかの実践的なヒントのまとめ

ES6 Super のいくつかの実践的なヒントのまとめ

不言
不言転載
2018-12-04 17:17:272039ブラウズ

この記事は、ES6 Super のいくつかの実践的なスキルをまとめたものです。必要な方は参考にしていただければ幸いです。

ハック #1 要素の交換

配列の構造化を使用して値の交換を実現する

let a = 'world', b = 'hello'
[a, b] = [b, a]
console.log(a) // -> hello
console.log(b) // -> world

ハック #2 デバッグ

デバッグには console.log() をよく使用しますが、console.table() を試しても問題ありません。

const a = 5, b = 6, c = 7
console.log({ a, b, c });
console.table({a, b, c, m: {name: 'xixi', age: 27}});

ハック #3 単一ステートメント

ES6 時代では、配列を操作するステートメントはよりコンパクトになります

// 寻找数组中的最大值
const max = (arr) => Math.max(...arr);
max([123, 321, 32]) // outputs: 321
// 计算数组的总和
const sum = (arr) => arr.reduce((a, b) => (a + b), 0)
sum([1, 2, 3, 4]) // output: 10

ハック # 4 配列の結合

展開演算子は concat を置き換えることができます

const one = ['a', 'b', 'c']
const two = ['d', 'e', 'f']
const three = ['g', 'h', 'i']
const result = [...one, ...two, ...three]

ハック #5 コピーの作成

配列と浅い配列を簡単に実装できますオブジェクトのコピー

const obj = { ...oldObj }
const arr = [ ...oldArr ]

ハック #6 名前付きパラメータ

構造化により関数宣言と関数呼び出しが読みやすくなる

// 我们尝尝使用的写法
const getStuffNotBad = (id, force, verbose) => {
 ...do stuff
}
// 当我们调用函数时, 明天再看,尼玛 150是啥,true是啥
getStuffNotBad(150, true, true)
// 看完本文你啥都可以忘记, 希望够记住下面的就可以了
const getStuffAwesome = ({id, name, force, verbose}) => {
 ...do stuff
}
// 完美
getStuffAwesome({ id: 150, force: true, verbose: true })

ハック #7 非同期/Await と配列分割の組み合わせ

#Promise.all と分割と await を組み合わせるとコードがより簡潔になります

const [user, account] = await Promise.all([
 fetch('/user'),
 fetch('/account')
])


以上がES6 Super のいくつかの実践的なヒントのまとめの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はsegmentfault.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。