碎片時(shí)間學(xué)編程「358]:創(chuàng)建一個(gè)函數(shù),獲取索引 n 處的參數(shù)

創(chuàng)建一個(gè)函數(shù),獲取索引 n 處的參數(shù)。 使用 Array.prototype.slice() 方法獲取索引 n 處所需的參數(shù)。 如果 n 為負(fù)數(shù),則返回倒數(shù)第 n 個(gè)參數(shù)。
const nthArg = n => (...args) => args.slice(n)[0];
示例:
const third = nthArg(2);third(1, 2, 3); // 3third(1, 2); // undefinedconst last = nthArg(-1);last(1, 2, 3, 4, 5); // 5
更多內(nèi)容請(qǐng)?jiān)L問我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: