使用 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、undefined 和 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
说明:
10. 交换变量值
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中文网其他相关文章!