Example 1: es6 map usin index
const array = [1, 2, 3, 4]; const map = array.map((x, index) => { console.log(index); return x + index; }); console.log(map);
Example 2: map javascript index
map((element) => { ... } ) map((element, index) => { ... } ) map((element, index, array) => { ... } ) map(callbackFn) map(callbackFn, thisArg) map(function callbackFn(element) { ... }) map(function callbackFn(element, index) { ... }) map(function callbackFn(element, index, array){ ... }) map(function callbackFn(element, index, array) { ... }, thisArg)
Example 3: map index
array.map((currentelement, index) => { });
Comments
Post a Comment