ホームページ > 記事 > ウェブフロントエンド > 開発者向けに知っておくべき JavaScript のヒント
Object.entries() を使用して、キーと値のペアをループします。
const person = { name: 'Tony Stark', age: 53, city: 'NewYork' }; /* name: Tony Stark age: 53 city: NewYork */ for (const [key, value] of Object.entries(person)) { console.log(`${key}: ${value}`); }
説明:
filter(Boolean) を使用して、偽の値を除外します。
(偽の値には、false、0、''、null、unknown、NaN が含まれます)
const arr = [1, 2, 0, '', undefined, null, 3, NaN, false]; const filteredArr = arr.filter(Boolean); console.log(filteredArr); // [1, 2, 3]
説明:
配列を平坦化するには flat() メソッドを使用します。
const multiDimensionalArray = [[1, 2], [3, 4, [5, 6]]]; const flattenedArray = multiDimensionalArray.flat(2); // Output: [1, 2, 3, 4, 5, 6] console.log(flattenedArray);
説明:
Array.from() を使用してイテラブルから配列を作成します。
// Converting String to an array const str = "TonyStark"; const arr = Array.from(str); // ['T', 'o', 'n', 'y', 'S', 't', 'a', 'r', 'k'] console.log(arr);
// Converting Set to an array const set = new Set([1, 2, 3, 3, 4, 5]); const arr = Array.from(set); console.log(arr); // Output: [1, 2, 3, 4, 5]
説明:
配列から値を抽出するには、構造化を使用します。
const numbers = [1, 2, 3, 4, 5]; const [first, second, , fourth] = numbers; console.log(first); // 1 console.log(second); // 2 console.log(fourth); // 4
説明:
オブジェクトの構造化を使用してプロパティを抽出します。
const person = { name: 'Tony Stark', age: 53, email: 'tonystark@starkindustries.com' }; const {name, age, email} = person; console.log(name); // Tony Stark console.log(age); // 53 console.log(email); // tonystark@starkindustries.com
説明:
Promise.all() を使用すると、複数の Promise を並行して実行できます。
const promise1 = fetch('https://api.example.com/data1'); const promise2 = fetch('https://api.example.com/data2'); Promise.all([promise1, promise2]) .then(responses => { // handle responses from both requests here const [response1, response2] = responses; // do something with the responses }) .catch(error => { // handle errors from either request here console.error(error); });
説明:
スプレッド構文で Math.max() と Math.min() を使用します。
const nums = [10, 12, 29, 60, 22]; console.log(Math.max(...nums)); // 60 console.log(Math.min(...nums)); // 10
説明:
二重否定を使用してください!!値を変換します。
!!2; // true !!''; // false !!NaN; // false !!'word'; // true !!undefined; // false
説明:
配列の構造化を使用して値を交換します。
let a = 5; let b = 10; // Swap values using array destructuring [a, b] = [b, a]; console.log(a); // 10 console.log(b); // 5
説明:
以上が開発者向けに知っておくべき JavaScript のヒントの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。