X(Twitter) Zenn GitHub RSS 共有

JavaScript

作成日時:2024-08-01以前
更新日時:2024-08-27

マルチスレッド

// API叩く場合の疑似的並列処理
const parallel = async () => {
    const [result1, result2] = await Promise.all([
        fetch('url1'),
        fetch('url2')
    ]);
    const data1 = heavyProcessing(result1);
    const data2 = heavyProcessing(result2);
};

TypeScriptにおける列挙型

enumは使わない方がいいらしい。

const FRUITS = {
  BANANA: ""
} as const;
type FRUITS = (typeof FRUITS)[keyof typeof FRUITS]
export default FRUITS;

JSONを整形する

JSON.stringify(obj, null, “\t”)で見やすく出来る。

JSON.stringify() - JavaScript | MDN

メモ

JavaScriptのオブジェクト

{data} = {data:data}