Maison >interface Web >js tutoriel >Conseils JavaScript incontournables pour les développeurs
Utilisez Object.entries() pour parcourir les paires clé-valeur.
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}`); }
Explication :
Utilisez filter(Boolean) pour filtrer les valeurs fausses.
(Les valeurs fausses incluent false, 0, '', null, undefined et NaN)
const arr = [1, 2, 0, '', undefined, null, 3, NaN, false]; const filteredArr = arr.filter(Boolean); console.log(filteredArr); // [1, 2, 3]
Explication :
Utilisez la méthode flat() pour aplatir les tableaux.
const multiDimensionalArray = [[1, 2], [3, 4, [5, 6]]]; const flattenedArray = multiDimensionalArray.flat(2); // Output: [1, 2, 3, 4, 5, 6] console.log(flattenedArray);
Explication :
Utilisez Array.from() pour créer un tableau à partir d'itérables.
// 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]
Explication :
Utilisez la déstructuration pour extraire les valeurs d'un tableau.
const numbers = [1, 2, 3, 4, 5]; const [first, second, , fourth] = numbers; console.log(first); // 1 console.log(second); // 2 console.log(fourth); // 4
Explication :
Utilisez la déstructuration d'objets pour extraire les propriétés.
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
Explication :
Promise.all() permet d'exécuter plusieurs promesses en parallèle.
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); });
Explication :
Utilisez Math.max() et Math.min() avec une syntaxe étalée.
const nums = [10, 12, 29, 60, 22]; console.log(Math.max(...nums)); // 60 console.log(Math.min(...nums)); // 10
Explication :
Utilisez la double négation !! pour convertir des valeurs.
!!2; // true !!''; // false !!NaN; // false !!'word'; // true !!undefined; // false
Explication :
Utilisez la déstructuration de tableaux pour échanger les valeurs.
let a = 5; let b = 10; // Swap values using array destructuring [a, b] = [b, a]; console.log(a); // 10 console.log(b); // 5
Explication :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!