- Published on
Array vs ArrayLike, Promise vs PromiseLike
- Author
- Name
- yceffort
ํ์
์คํฌ๋ฆฝํธ์๋ ArrayLike
๋ผ๋๊ฒ ์กด์ฌํ๋ค. Array
๋ ์ผ๋ฐ์ ์ธ ๋ฐฐ์ด์ ์๋ฏธํ๋๋ฐ, ArrayLike
๋ ๋ฌด์์ผ๊น? ์ด๋ฅผ ์์๋ณด๊ธฐ ์ํด lib.es5.d.ts
์ ๊ฐ์ ๊ฐ๊ฐ์ ์คํ์ ์ดํด๋ณด์.
Array
ArrayLike<T>
interface ArrayLike<T> {
readonly length: number
readonly [n: number]: T
}
Array<T>
interface Array<T> {
/**
* Returns the value of the first element in the array where predicate is true, and undefined
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found, find
* immediately returns that element value. Otherwise, find returns undefined.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find<S extends T>(
predicate: (this: void, value: T, index: number, obj: T[]) => value is S,
thisArg?: any,
): S | undefined
find(
predicate: (value: T, index: number, obj: T[]) => unknown,
thisArg?: any,
): T | undefined
/**
* Returns the index of the first element in the array where predicate is true, and -1
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found,
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(
predicate: (value: T, index: number, obj: T[]) => unknown,
thisArg?: any,
): number
/**
* Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
* @param value value to fill array section with
* @param start index to start filling the array at. If start is negative, it is treated as
* length+start where length is the length of the array.
* @param end index to stop filling the array at. If end is negative, it is treated as
* length+end.
*/
fill(value: T, start?: number, end?: number): this
/**
* Returns the this object after copying a section of the array identified by start and end
* to the same array starting at position target
* @param target If target is negative, it is treated as length+target where length is the
* length of the array.
* @param start If start is negative, it is treated as length+start. If end is negative, it
* is treated as length+end.
* @param end If not specified, length of the this object is used as its default value.
*/
copyWithin(target: number, start: number, end?: number): this
}
Array
๋ ๋ฑ๋ด๋ ์ฐ๋ฆฌ๊ฐ ์ผ๋ฐ์ ์ผ๋ก ์๋ ๋ฐฐ์ด์ ๋ค์ด๊ฐ๋ ๋ฉ์๋๋ค์ด ์ ์๋์ด ์์ง๋ง, ArrayLike
๋ ๊ทธ๋ ์ง ์๋ค. length
์ index๋ก๋ง ์ ๊ทผํ ์ ์๋๋ก ๊ตฌํ๋์ด ์๋ค. ์ด๋ ๋ฐ๋ก ์ฐ๋ฆฌ๊ฐ ์ ์๊ณ ์๋ ์ ์ฌ ๋ฐฐ์ด ๊ฐ์ฒด๋ค. ๋ฐฐ์ด ์ฒ๋ผ ์ํํ ์ ์์ง๋ง, ๊ทธ ๋ฟ์ธ ์ ์ฌ ๋ฐฐ์ด ๊ฐ์ฒด. ๋ํ์ ์ผ๋ก๋
- https://developer.mozilla.org/en-US/docs/Web/API/HTMLCollection
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments
๊ฐ ์๋ค.
Promise
๊ทธ๋ ๋ค๋ฉด ์ด๋ฒ์๋ Promise
๋ฅผ ์ดํด๋ณด์.
Promise<T>
(lib.2018.promise.d.ts)
interface Promise<T> {
/**
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
* resolved value cannot be modified from the callback.
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
* @returns A Promise for the completion of the callback.
*/
finally(onfinally?: (() => void) | undefined | null): Promise<T>
}
Promise<T>
(lib.es5.d.ts)
interface Promise<T> {
/**
* Attaches callbacks for the resolution and/or rejection of the Promise.
* @param onfulfilled The callback to execute when the Promise is resolved.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of which ever callback is executed.
*/
then<TResult1 = T, TResult2 = never>(
onfulfilled?:
| ((value: T) => TResult1 | PromiseLike<TResult1>)
| undefined
| null,
onrejected?:
| ((reason: any) => TResult2 | PromiseLike<TResult2>)
| undefined
| null,
): Promise<TResult1 | TResult2>
/**
* Attaches a callback for only the rejection of the Promise.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of the callback.
*/
catch<TResult = never>(
onrejected?:
| ((reason: any) => TResult | PromiseLike<TResult>)
| undefined
| null,
): Promise<T | TResult>
}
PromiseLike<T>
interface PromiseLike<T> {
/**
* Attaches callbacks for the resolution and/or rejection of the Promise.
* @param onfulfilled The callback to execute when the Promise is resolved.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of which ever callback is executed.
*/
then<TResult1 = T, TResult2 = never>(
onfulfilled?:
| ((value: T) => TResult1 | PromiseLike<TResult1>)
| undefined
| null,
onrejected?:
| ((reason: any) => TResult2 | PromiseLike<TResult2>)
| undefined
| null,
): PromiseLike<TResult1 | TResult2>
}
Promise<T>
์๋ finally
๋ง ์๊ณ , PromiseLike<T>
์๋ then
๋ฐ์ ์๋ค. ๐ค ์ด ๋์ ์ฐจ์ด๋ฅผ ๋จผ์ ์ ํ์๊ฐ ์๋ค.
then
vs finally
finally
: promise๊ฐ ์ฒ๋ฆฌ๋๋ฉด ์ถฉ์กฑ๋๊ฑฐ๋ (resolve) ๊ฑฐ๋ถ๋๊ฑฐ๋ (reject) ์๊ด์์ด ์คํํ๋ ์ฝ๋ฐฑํจ์๋ค. Promise์ ์ฑ๊ณต์ ์ผ๋ก ์ํ๋์๋์ง, ๊ฑฐ์ ๋์๋์ง์ ๊ด๊ณ์์ด Promise๊ฐ ์ฒ๋ฆฌ๋ ํ์ ๋ฌด์กฐ๊ฑด ํ๋ฒ์ ์คํ๋๋ ์ฝ๋๋ค.then
: ์ ์ฐ๋ฆฌ๊ฐ ์ ์๋ ๊ฒ์ฒ๋ผ Promise๋ฅผ ๋ฆฌํดํ๊ณ ๋๊ฐ์ ์ฝ๋ฐฑํจ์๋ฅผ ๋ฐ๋๋ค. ํ๋๋ ์ถฉ์กฑ๋์์ ๋ (resolve
) ๊ทธ๋ฆฌ๊ณ ๊ฑฐ๋ถ๋์์ ๋ (reject
)๋ฅผ ์ํ ์ฝ๋ฐฑ ํจ์๋ค.
p.then(onFulfilled, onRejected)
p.then(
function (value) {
// ์ดํ
},
function (reason) {
// ๊ฑฐ๋ถ
},
)
๊ทธ๋ฆฌ๊ณ ๋ํ๊ฐ์ง๋ finally
๋ Promise ์ฒด์ด๋์์ ๊ฒฐ๊ณผ๋ฅผ ๋ฐ์ ์ ์๋ค๋ ๊ฒ์ด๋ค.
const result = new Promise((resolve, reject) => resolve(10))
.then((x) => {
console.log(x) // 10
return x + 1
})
.finally((x) => {
console.log(x) // undefined
return x + 2
})
// then์์ ๋ฆฌํดํ๋ 11์ resolve ํ๋ค.
result // Promiseย {<fulfilled>: 11}
๋๋ค๋ฅธ ์ฐจ์ด๋ ์๋ฌํธ๋ค๋ง๊ณผ Promise chaining์ด๋ค. ๋ง์ฝ promise chaining์์ ์๋ฌ์ฒ๋ฆฌ๋ฅผ ๋ฏธ๋ฃจ๊ณ ๋ค๋ฅธ ์ด๋๊ฐ์์ ์ฒ๋ฆฌํ๊ณ ์ถ๋ค๋ฉด, finally
๋ฅผ ์ฌ์ฉํ๋ฉด ๋๋ค.
new Promise((resolve, reject) => reject(0))
.catch((x) => {
console.log(x) // 0
throw x
})
.then((x) => {
console.log(x) // Will not run
})
.finally(() => {
console.log('clean up') // 'clean up'
})
// Uncaught (in promise) 0
// try catch ๋ก ์ก์ผ๋ฉด ์กํ๋ค!
๋์ผ๋ก finally
๋ es2018์์ ๋์จ ๋ฉ์๋ ์ด๊ธฐ ๋๋ฌธ์ lib.es2018.promise.d.ts
์ ์กด์ฌํ๋ค. https://2ality.com/2017/07/promise-prototype-finally.html
์๋ฌดํผ ๋ค์ ๋์๊ฐ์, catch๊ฐ ์๋ PromiseLike
๋ ์ ์กด์ฌํ๋ ๊ฒ์ผ๊น? ๐ค Promise๊ฐ ์ ์ ์คํ์ด ๋๊ธฐ ์ , Promise๋ฅผ ๊ตฌํํ๊ธฐ ์ํ ๋ค์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๊ฐ ์กด์ฌํ๋ค.
์ด๋ค์ ํ์ค์ด์ ์ ํ์ด๋ catch
๊ตฌ๋ฌธ์์ด promise๋ฅผ ์ฒ๋ฆฌํ๊ณ ์์๊ณ , ํ์
์คํฌ๋ฆฝํธ๋
์ด๋ฅผ ์ง์ํ๊ธฐ ์ํด์ PromiseLike
๋ฅผ ๋ง๋ ๊ฒ์ด์๋ค.
๋ฐ๋ผ์ Promise
๋ฟ๋ง ์๋๋ผ ์ข๋ ๊ด์์ Promise
(ํ์ค ์ด์ ์ ๋ง๋ค์ด์ง ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ก ๋ง๋ค์ด์ง Promise
)๋ฅผ ์ฒ๋ฆฌํ๊ธฐ ์ํด์ PromiseLike
ํ์
์ ์ถ๊ฐํ๊ฒ ๋ ๊ฒ์ด๋ค.