Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

tc39/proposal-array-grouping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

proposal-array-grouping

A proposal to make grouping of items in an array easier.

const array = [1, 2, 3, 4, 5];

// groupBy groups items by arbitrary key.
// In this case, the we're grouping on even/odd keys
array.groupBy(i => {
  return i % 2 === 0 ? 'even': 'odd';
});

// =>  { odd: [1, 3, 5], even: [2, 4] }

Champions

Status

Current Stage: 1

Motivation

TODO

Polyfill

Pending polyfill implementations...

Related

About

A proposal to make grouping of array items easier

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Languages