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}`); }
설명:
잘못된 값을 필터링하려면 필터(부울)를 사용하세요.
(거짓 값에는 false, 0, '', null, 정의되지 않음 및 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!