Skip to content

Instantly share code, notes, and snippets.

@nishanthreddy114
Created April 28, 2021 05:52
Show Gist options
  • Save nishanthreddy114/eee29460f2c188aab974c65c3ea9882c to your computer and use it in GitHub Desktop.
Save nishanthreddy114/eee29460f2c188aab974c65c3ea9882c to your computer and use it in GitHub Desktop.
let activities = [
['Work', 9],
['Eat', 1],
['Commute', 2],
['Play Game', 1],
['Sleep', 7]
];
function rotate( parameter ){
var newarr = [];
for( var x = 0; x < parameter[0].length; x++ ){
newarr[x] = [];
for( var y = 0; y <parameter.length; y++ ){
newarr[x].push( parameter[y][x] );
}
}
return newarr;
}
console.log(rotate(activities));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment