본문 바로가기

javascript12

Array.prototype.filter() https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/filter Array.prototype.filter() - JavaScript | MDN filter() 메서드는 주어진 함수의 테스트를 통과하는 모든 요소를 모아 새로운 배열로 반환합니다. developer.mozilla.org https://www.w3schools.com/jsref/jsref_filter.asp JavaScript Array filter() Method W3Schools offers free online tutorials, references and exercises in all the major languages of the web.. 2021. 11. 9.
Array.prototype.map() https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/map Array.prototype.map() - JavaScript | MDN map() 메서드는 배열 내의 모든 요소 각각에 대하여 주어진 함수를 호출한 결과를 모아 새로운 배열을 반환합니다. developer.mozilla.org https://www.w3schools.com/jsref/jsref_map.asp JavaScript Array map() Method W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Co.. 2021. 11. 3.
Array.prototype.at() https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at Array.prototype.at() - JavaScript | MDN The at() method takes an integer value and returns the item at that index, allowing for positive and negative integers. Negative integers count back from the last item in the array. developer.mozilla.org at() 메소드는 정수 인덱스 값을 가지고 인덱스 정수 번째에 위치한 아이템을 반환한다. 인덱스는 음수와 양수가 가.. 2021. 11. 2.
JavaScript Promises https://www.w3schools.com/js/js_promise.asp JavaScript Promises JavaScript Promises "I Promise a Result!" "Producing code" is code that can take some time "Consuming code" is code that must wait for the result A Promise is a JavaScript object that links producing code and consuming code JavaScript Promise Object A Java www.w3schools.com JavaScript Promises 자바스크립트 프라미스 "I Promise a Result!" "저는 결.. 2021. 7. 8.