Skip to content

[RFC]: add console/log-each-map #13

@kgryte

Description

@kgryte

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.difficulty: 1Low degree of difficulty. Should be straightforward to implement and/or resolve.estimate: 2-4hrsTask which should take between 2 to 4 hours.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions