-
-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
stdlib-js/stdlib
#5357Labels
FeatureTask to add a new feature.Task to add a new feature.difficulty: 1Low degree of difficulty. Should be straightforward to implement and/or resolve.Low degree of difficulty. Should be straightforward to implement and/or resolve.estimate: 2-4hrsTask which should take between 2 to 4 hours.Task which should take between 2 to 4 hours.
Description
Signature:
logEachMap( str[, ...args], clbk[, thisArg] )
Example usage:
function add( a, b ) {
return a + b;
}
var x = [ 1, 2, 3 ];
var y = [ 4, 5, 6 ];
logEachMap( '%d + %d = %d', x, y, add )
Expected results:
1 + 4 = 5
2 + 5 = 7
3 + 6 = 9
Time estimate without AI: 3hrs
Time estimate with AI: 1-2hrs
Metadata
Metadata
Assignees
Labels
FeatureTask to add a new feature.Task to add a new feature.difficulty: 1Low degree of difficulty. Should be straightforward to implement and/or resolve.Low degree of difficulty. Should be straightforward to implement and/or resolve.estimate: 2-4hrsTask which should take between 2 to 4 hours.Task which should take between 2 to 4 hours.