Skip to content

Instantly share code, notes, and snippets.

@imsarvesh
Created March 29, 2022 13:48
Show Gist options
  • Save imsarvesh/e56a199f9f48ed45159c9f69ff1364ca to your computer and use it in GitHub Desktop.
Save imsarvesh/e56a199f9f48ed45159c9f69ff1364ca to your computer and use it in GitHub Desktop.
function share(users, amount){
// write your logic
}
const users = [
{user: 'a', ratio: '.45'},
{user: 'b', ratio: '.45'},
{user: 'c', ratio: '.10'}
]
share(users, 10);
/*
//Output
[
{user: 'a', ratio: '.45', share: 4},
{user: 'b', ratio: '.45', share: 4},
{user: 'c', ratio: '.10', share: 2}
]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment