본문 바로가기

JAVASCRIPT

(80)
== ,=== 차이로 알수있는 것들 1 == "1" 1 === "1" 이 예문을 확인하면 알수있다. 이예를 들어 한가지를 알수있는 또 다른 좋은 예는 if문과 switch문의 차이입니다.
.every () 예문 every() 메서드는 배열 안의 모든 요소가 주어진 판별 함수를 통과하는지 테스트합니다. 모든 조건이 맞으면 true 하나라도 조건에 맞지 않으면 false const words = ['unique', 'uncanny', 'pique', 'oxymoron', 'guise']; const interestingWords = words.filter((word) => {return word.length > 5}); console.log(interestingWords.every((word) => {return word.length > 5}));
some () 예문 const words = ['unique', 'uncanny', 'pique', 'oxymoron', 'guise']; // Something is missing in the method call below console.log(words.some(word => { return word.length < 6; })); som () 메서드 함수는 배열안에 주어진 판별함수를 통과하는지 테스트할수있는 메서드 함수입니다.
forEach() 예문 onst cities = ['Orlando', 'Dubai', 'Edinburgh', 'Chennai', 'Accra', 'Denver', 'Eskisehir', 'Medellin', 'Yokohama']; const nums = [1, 50, 75, 200, 350, 525, 1000]; // Choose a method that will return undefined cities.forEach(city => console.log('Have you visited ' + city + '?')); forEach() 메서드는 주어진 함수를 배열 요소 각각에 대해 실행합니다.
The .reduce() Method const numbers = [1, 2, 4, 10]; const summedNums = numbers.reduce((accumulator, currentValue) => { return accumulator + currentValue }) console.log(summedNums) // Output: 17 const numbers = [1, 2, 4, 10]; const summedNums = numbers.reduce((accumulator, currentValue) => { return accumulator + currentValue }, 100) //
The .findIndex() Method const animals = ['hippo', 'tiger', 'lion', 'seal', 'cheetah', 'monkey', 'salamander', 'elephant']; const foundAnimal = animals.findIndex(animal => { return animal === 'elephant'; }); const startsWithS = animals.findIndex(animal => { return animal[0] === 's' ? true : false; });
The .filter() Method const randomNumbers = [375, 200, 3.14, 7, 13, 852]; // Call .filter() on randomNumbers below const smallNumbers = randomNumbers.filter(number => number elements.length > 7); filter() 메서드는 주어진 함수의 테스트를 통과하는 모든..
The .forEach() Method const fruits = ['mango', 'papaya', 'pineapple', 'apple']; // Iterate over fruits below fruits.forEach(fruit => console.log(`I want to eat a ${fruit}.`))